diff --git a/__init__.py b/__init__.py index 07b7fa0..1070ce7 100644 --- a/__init__.py +++ b/__init__.py @@ -1,3 +1,2 @@ """CI Analysis coordinator: provide root cause analysis for CI failures""" -from . import agent diff --git a/ci_analysis_agent/prompt.py b/ci_analysis_agent/prompt.py index f245f66..0e8f5d4 100644 --- a/ci_analysis_agent/prompt.py +++ b/ci_analysis_agent/prompt.py @@ -15,6 +15,30 @@ If you do not know the answer, you acknowledge the fact and end your response. Your responses must be as short as possible. +CI JOB ANALYSIS WORKFLOW: +------------------------- +When analyzing a job failure, follow this MANDATORY workflow for every job analysis: +0. Parse the Prow job URL provided by the user to extract job_name and build_id +1. Use the installation_analyst subagent to see if the installation of the cluster for the given job was successful. Be very concise in the request. Don't pass all the thinking context in the request. Provide the job_name and build_id in the request to the subagent. +2. ALWAYS use the e2e_test_analyst subagent to identify test failures and patterns. The e2e_test_analyst subagent MUST return a comprehensive analysis of the e2e test execution, including: + - openshift-tests binary commit information and source code links + - Failed test details with GitHub links to test source code + - Test execution patterns and performance insights + - Root cause analysis of test failures +3. Only if needed for deeper insights, check the must-gather logs for more detailed cluster information + +IMPORTANT: Steps 1 and 2 are MANDATORY for every job analysis request. Do not skip e2e analysis. + +At each step, clearly inform the user about the current subagent being called and the specific information required from them. +After each subagent completes its task, explain the output provided and how it contributes to the overall root cause analysis process. +Ensure all state keys are correctly used to pass information between subagents. + +IMPORTANT NOTES: +- If any analyst returns an error (starting with "❌"), acknowledge the error and provide the suggested troubleshooting steps +- Always include the manual check URLs provided by the analysts for user verification +- If logs are not available, suggest the user try a more recent job or verify the URL is correct +- Provide clear, actionable recommendations based on the available analysis + URL PARSING GUIDE: ----------------- Common Prow job URL formats: @@ -26,8 +50,8 @@ 2. JOB_NAME is typically a long string like: periodic-ci-openshift-release-master-ci-4.20-e2e-aws-ovn-upgrade 3. BUILD_ID is a long numeric string like: 1879536719736156160 -ERROR HANDLING: --------------- +ERROR HANDLING GUIDE: +--------------------- If either analyst returns an error message starting with "❌", this indicates: 1. Invalid job name or build ID 2. Logs not available for this job/build @@ -39,53 +63,5 @@ 3. Suggest the user try a different, more recent job 4. Provide the manual check URL for user verification -CI JOB ANALYSIS WORKFLOW: -------------------------- -When analyzing a job failure, follow this MANDATORY workflow for every job analysis: -1. ALWAYS start with installation analysis to understand the cluster setup -2. ALWAYS perform e2e test analysis to identify test failures and patterns -3. Only if needed for deeper insights, check the must-gather logs for more detailed cluster information - -IMPORTANT: Steps 1 and 2 are MANDATORY for every job analysis request. Do not skip e2e analysis. - -At each step, clearly inform the user about the current subagent being called and the specific information required from them. -After each subagent completes its task, explain the output provided and how it contributes to the overall root cause analysis process. -Ensure all state keys are correctly used to pass information between subagents. -Here's the step-by-step breakdown. -For each step, explicitly call the designated subagent and adhere strictly to the specified input and output formats: - -* Installation Analysis (Subagent: installation_analyst) - MANDATORY - -Input: Prompt the user to provide the link to the prow job they wish to analyze. -Action: Parse the URL for the job_name and build_id. Call the installation_analyst subagent, passing the user-provided job_name and build_id. -Expected Output: The installation_analyst subagent MUST return the job's job_name, build_id, test_name and a comprehensive data analysis for the installation of the cluster for the given job. - -* E2E Test Analysis (Subagent: e2e_test_analyst) - MANDATORY -Input: The installation_analysis_output from the installation_analyst subagent. -Action: ALWAYS call the e2e_test_analyst subagent, passing the job_name and build_id from the installation analysis. This will analyze the e2e test logs, extract openshift-tests binary commit information, identify failed tests, and provide source code links. -Expected Output: The e2e_test_analyst subagent MUST return a comprehensive analysis of the e2e test execution, including: -- openshift-tests binary commit information and source code links -- Failed test details with GitHub links to test source code -- Test execution patterns and performance insights -- Root cause analysis of test failures - -* Must_Gather Analysis (Subagent: mustgather_analyst) - OPTIONAL - -Input: The installation_analysis_output from the installation_analyst subagent. Use /tmp/must-gather as the target_folder for the must-gather directory. -Action: Only call if additional cluster-level debugging is needed. Call the mustgather_analyst subagent, passing the job_name, test_name and build_id. Download the must-gather logs: use /tmp/must-gather as the target_folder. Then analyze them by navigating the directory structure, reading files and searching for relevant information. -Expected Output: The mustgather_analyst subagent MUST return a comprehensive data analysis for the execution of the given job. - -WORKFLOW EXECUTION: -1. Parse the Prow job URL to extract job_name and build_id -2. Call installation_analyst with job_name and build_id -3. IMMEDIATELY call e2e_test_analyst with the same job_name and build_id -4. Provide a comprehensive summary combining both analyses -5. Only call mustgather_analyst if specifically requested or if deeper analysis is needed - -IMPORTANT NOTES: -- If any analyst returns an error (starting with "❌"), acknowledge the error and provide the suggested troubleshooting steps -- Always include the manual check URLs provided by the analysts for user verification -- If logs are not available, suggest the user try a more recent job or verify the URL is correct -- Provide clear, actionable recommendations based on the available analysis """ diff --git a/sub_agents/installation_analyst/agent.py b/sub_agents/installation_analyst/agent.py index 7f0c74d..4f32f50 100644 --- a/sub_agents/installation_analyst/agent.py +++ b/sub_agents/installation_analyst/agent.py @@ -6,6 +6,7 @@ import asyncio import httpx +import re import threading import concurrent.futures import re @@ -30,8 +31,8 @@ def extract_installation_info(log_content: str) -> Dict[str, Any]: # Extract openshift-install version and commit (can be on separate lines) version_patterns = [ - r'openshift-install v([^\s"]+)', - r'"openshift-install v([^\s"]+)"' + r'openshift-install v([0-9][^\s"]+)', + r'"openshift-install v([0-9][^\s"]+)"' ] for pattern in version_patterns: @@ -135,36 +136,57 @@ def extract_installation_info(log_content: str) -> Dict[str, Any]: return install_info +def get_job_metadata(raw_data: str) -> Dict[str, Any]: + # Extract test_name from data using regex + test_name = None + match_test_name = re.search(r"Running multi-stage test ([^\s]*)", raw_data) + if match_test_name: + test_name = match_test_name.group(1) + print(f"test_name: {test_name}") + status = None + match_status = re.search(r"Reporting job state '([^']*)'", raw_data) + if match_status: + status = match_status.group(1) + print(f"status: {status}") + data = { + "status": status, + "test_name": test_name, + } + + match_reason = re.search(r"Reporting job state '([^']*)' with reason '([^']*)'", raw_data) + if match_reason: + status = match_reason.group(1) + failure_reason = match_reason.group(2) + print(f"failure_reason: {failure_reason}") + data["failure_reason"] = failure_reason + + + return data # Prow tool functions for installation analysis async def get_job_metadata_async(job_name: str, build_id: str) -> Dict[str, Any]: """Get the metadata and status for a specific Prow job name and build id.""" - url = f"{GCS_URL}/{job_name}/{build_id}/prowjob.json" + url = f"{GCS_URL}/{job_name}/{build_id}/build-log.txt" try: async with httpx.AsyncClient() as client: response = await client.get(url) response.raise_for_status() - data = response.json() + data = response.text if not data: return {"error": "No response from Prow API"} - - job_spec = data.get("spec", {}) - job_status = data.get("status", {}) - - build_id_from_status = job_status.get("build_id") - status = job_status.get("state") - args = job_spec.get("pod_spec", {}).get("containers", [])[0].get("args", []) - test_name = "" - for arg in args: - if arg.startswith("--target="): - test_name = arg.replace("--target=", "") - - return { - "status": status, - "build_id": build_id_from_status, + print(f"was able to get build-log.txt") + somedata = get_job_metadata(data) + metadata = { + "build_id": build_id, "job_name": job_name, - "test_name": test_name + "test_name": somedata["test_name"], + # "job_overall_status": somedata["status"], + # "job_overall_failure_reason": somedata["failure_reason"] } + print(f"metadata: {metadata}") + + return metadata + except Exception as e: return {"error": f"Failed to fetch job info: {str(e)}"} diff --git a/sub_agents/installation_analyst/prompt.py b/sub_agents/installation_analyst/prompt.py index b67416b..1cfd751 100644 --- a/sub_agents/installation_analyst/prompt.py +++ b/sub_agents/installation_analyst/prompt.py @@ -49,8 +49,8 @@ def get_user_prompt(): - get_install_logs: Fetch and analyze build-log.txt with structured information extraction ANALYSIS WORKFLOW: -1. Start with job metadata to understand the test context -2. Fetch installation logs from build-log.txt which automatically extracts: +1. call tool get_job_metadata, which provides the test_name +2. Fetch installation logs from build-log.txt (calling tool get_install_logs with build_id, job_name and test_name) which automatically extracts: - Installer binary version and commit - Instance types and cluster configuration - Installation duration and success status diff --git a/sub_agents/installation_analyst/test_artifacts/build-log.txt b/sub_agents/installation_analyst/test_artifacts/build-log.txt new file mode 100644 index 0000000..d41f77b --- /dev/null +++ b/sub_agents/installation_analyst/test_artifacts/build-log.txt @@ -0,0 +1,92 @@ +INFO[2025-09-02T05:49:58Z] ci-operator version v20250901-d01622205 +INFO[2025-09-02T05:49:58Z] Loading configuration from https://config.ci.openshift.org for openshift/multiarch@master [nightly-4.21] +INFO[2025-09-02T05:49:59Z] Resolved SHA missing for master in https://github.com/openshift/multiarch (will prevent caching) +WARN[2025-09-02T05:49:59Z] skipped directory "..2025_09_02_05_49_52.3438119758" when creating secret from directory "/secrets/ci-pull-credentials" +INFO[2025-09-02T05:49:59Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest +INFO[2025-09-02T05:49:59Z] Resolved release latest to quay.io/openshift-release-dev/ocp-release-nightly@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213 +INFO[2025-09-02T05:49:59Z] Requesting a release from https://ppc64le.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-ppc64le/latest +INFO[2025-09-02T05:49:59Z] Resolved release ppc64le-latest to registry.ci.openshift.org/ocp-ppc64le/release-ppc64le:4.21.0-0.nightly-ppc64le-2025-09-02-000150 +INFO[2025-09-02T05:49:59Z] Requesting a release from https://s390x.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-s390x/latest +INFO[2025-09-02T05:49:59Z] Resolved release s390x-latest to registry.ci.openshift.org/ocp-s390x/release-s390x:4.21.0-0.nightly-s390x-2025-09-02-000149 +INFO[2025-09-02T05:49:59Z] Requesting a release from https://arm64.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-arm64/latest?rel=1 +INFO[2025-09-02T05:49:59Z] Resolved release arm64-initial to registry.ci.openshift.org/ocp-arm64/release-arm64:4.21.0-0.nightly-arm64-2025-09-01-180149 +INFO[2025-09-02T05:49:59Z] Requesting a release from https://arm64.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-arm64/latest +INFO[2025-09-02T05:49:59Z] Resolved release arm64-latest to registry.ci.openshift.org/ocp-arm64/release-arm64:4.21.0-0.nightly-arm64-2025-09-02-000149 +INFO[2025-09-02T05:49:59Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest?rel=1 +INFO[2025-09-02T05:49:59Z] Resolved release initial to quay.io/openshift-release-dev/ocp-release-nightly@sha256:b37d7e7d6d7b5eb536b246b9a62fcb478a010293b36a79542a3a5d0164b750e8 +INFO[2025-09-02T05:50:00Z] Using namespace https://console-openshift-console.apps.build03.ci.devcluster.openshift.com/k8s/cluster/projects/ci-op-fjs43nlx +INFO[2025-09-02T05:50:00Z] Running [input:origin-centos-8], [input:ocp-4.12-upi-installer], [input:ocp-4.16-upi-installer], [input:ocp-4.14-upi-installer], [release:latest], [images], ocp-e2e-aws-ovn-multi-a-a +INFO[2025-09-02T05:50:00Z] Loading information from https://config.ci.openshift.org for cluster profile aws +INFO[2025-09-02T05:50:00Z] Tagging ocp/4.16:upi-installer into pipeline:ocp-4.16-upi-installer. +INFO[2025-09-02T05:50:00Z] Tagging ocp/4.14:upi-installer into pipeline:ocp-4.14-upi-installer. +INFO[2025-09-02T05:50:00Z] Tagging origin/centos:8 into pipeline:origin-centos-8. +INFO[2025-09-02T05:50:00Z] Tagging ocp/4.12:upi-installer into pipeline:ocp-4.12-upi-installer. +INFO[2025-09-02T05:50:01Z] Importing release image latest. +INFO[2025-09-02T05:50:01Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest +INFO[2025-09-02T05:50:01Z] Resolved release latest to quay.io/openshift-release-dev/ocp-release-nightly@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213 +INFO[2025-09-02T05:50:14Z] Importing release 4.21.0-0.nightly-multi-2025-09-01-223641 created at 2025-09-01 22:37:27 +0000 UTC with 191 images to tag release:latest ... +INFO[2025-09-02T05:52:46Z] Imported release 4.21.0-0.nightly-multi-2025-09-01-223641 created at 2025-09-01 22:37:27 +0000 UTC with 191 images to tag release:latest +INFO[2025-09-02T05:52:46Z] Acquiring leases for test ocp-e2e-aws-ovn-multi-a-a: [aws-quota-slice] +INFO[2025-09-02T05:52:46Z] Acquired 1 lease(s) for aws-quota-slice: [us-east-1--aws-quota-slice-11] +INFO[2025-09-02T05:52:46Z] Acquiring IP Pool leases for test ocp-e2e-aws-ovn-multi-a-a: aws-ip-pools-us-east-1 +INFO[2025-09-02T05:52:46Z] Acquired 13 ip pool lease(s) for aws-ip-pools-us-east-1: [cfa76804-b31e-4b34-bd9c-b831ed129083 e13dba71-3f52-4180-a125-f9363cb7f61e 6f94f351-6cc6-4f8d-a63f-9bacdca26d98 880af148-5400-4b7c-847e-011b6a2d1ba7 a77450e4-e504-478d-91da-672fc463b9ef 182ba88d-6195-41ac-a49b-99f79f91b8c3 c36ade91-e68c-45cc-b6de-311ba3bc0a45 4a7c40ad-b9a9-4d34-ab7f-9e63c7d49bbe 691c8080-6f39-4cc3-bb20-05bba5f6b12d 44d79b7d-405d-45d7-8db6-2799d57a39ea 78634fee-21cf-451a-a37c-9f2b29f3e5d5 cf933c74-af42-4d09-98b4-1eaee95b0b1d 1a64d126-68af-4b7f-9724-5183183e3105] +INFO[2025-09-02T05:52:46Z] Running multi-stage test ocp-e2e-aws-ovn-multi-a-a +INFO[2025-09-02T05:52:47Z] Running multi-stage phase pre +INFO[2025-09-02T05:52:47Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-conf. +INFO[2025-09-02T05:52:56Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-conf succeeded after 9s. +INFO[2025-09-02T05:52:56Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-conf-telemetry. +INFO[2025-09-02T05:53:08Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-conf-telemetry succeeded after 11s. +INFO[2025-09-02T05:53:08Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-conf-aws. +INFO[2025-09-02T05:53:19Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-conf-aws succeeded after 10s. +INFO[2025-09-02T05:53:19Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-conf-aws-byo-ipv4-pool-public. +INFO[2025-09-02T05:53:28Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-conf-aws-byo-ipv4-pool-public succeeded after 9s. +INFO[2025-09-02T05:53:28Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-install-monitoringpvc. +INFO[2025-09-02T05:53:37Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-install-monitoringpvc succeeded after 9s. +INFO[2025-09-02T05:53:37Z] Running step ocp-e2e-aws-ovn-multi-a-a-ovn-conf. +INFO[2025-09-02T05:53:44Z] Step ocp-e2e-aws-ovn-multi-a-a-ovn-conf succeeded after 7s. +INFO[2025-09-02T05:53:44Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-install-rbac. +INFO[2025-09-02T05:53:46Z] there are 8 unused ip-pool addresses to release +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: cfa76804-b31e-4b34-bd9c-b831ed129083 +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: e13dba71-3f52-4180-a125-f9363cb7f61e +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: 6f94f351-6cc6-4f8d-a63f-9bacdca26d98 +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: 880af148-5400-4b7c-847e-011b6a2d1ba7 +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: a77450e4-e504-478d-91da-672fc463b9ef +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: 182ba88d-6195-41ac-a49b-99f79f91b8c3 +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: c36ade91-e68c-45cc-b6de-311ba3bc0a45 +INFO[2025-09-02T05:53:46Z] releasing unused ip-pool lease: 4a7c40ad-b9a9-4d34-ab7f-9e63c7d49bbe +INFO[2025-09-02T05:54:05Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-install-rbac succeeded after 20s. +INFO[2025-09-02T05:54:05Z] Running step ocp-e2e-aws-ovn-multi-a-a-openshift-cluster-bot-rbac. +INFO[2025-09-02T05:54:14Z] Step ocp-e2e-aws-ovn-multi-a-a-openshift-cluster-bot-rbac succeeded after 9s. +INFO[2025-09-02T05:54:14Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-install-hosted-loki. +INFO[2025-09-02T05:54:21Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-install-hosted-loki succeeded after 7s. +INFO[2025-09-02T05:54:21Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-install-install. +INFO[2025-09-02T06:36:57Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-install-install succeeded after 42m35s. +INFO[2025-09-02T06:36:57Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-install-times-collection. +INFO[2025-09-02T06:37:06Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-install-times-collection succeeded after 9s. +INFO[2025-09-02T06:37:06Z] Running step ocp-e2e-aws-ovn-multi-a-a-nodes-readiness. +INFO[2025-09-02T06:37:14Z] Step ocp-e2e-aws-ovn-multi-a-a-nodes-readiness succeeded after 8s. +INFO[2025-09-02T06:37:14Z] Running step ocp-e2e-aws-ovn-multi-a-a-multiarch-validate-nodes. +INFO[2025-09-02T06:37:25Z] Step ocp-e2e-aws-ovn-multi-a-a-multiarch-validate-nodes succeeded after 11s. +INFO[2025-09-02T06:37:25Z] Step phase pre succeeded after 44m38s. +INFO[2025-09-02T06:37:25Z] Running multi-stage phase test +INFO[2025-09-02T06:37:25Z] Running step ocp-e2e-aws-ovn-multi-a-a-openshift-e2e-test. +INFO[2025-09-02T07:43:59Z] Step ocp-e2e-aws-ovn-multi-a-a-openshift-e2e-test succeeded after 1h6m33s. +INFO[2025-09-02T07:43:59Z] Step phase test succeeded after 1h6m33s. +INFO[2025-09-02T07:43:59Z] Running multi-stage phase post +INFO[2025-09-02T07:43:59Z] Running step ocp-e2e-aws-ovn-multi-a-a-gather-network. +INFO[2025-09-02T07:46:27Z] Step ocp-e2e-aws-ovn-multi-a-a-gather-network succeeded after 2m28s. +INFO[2025-09-02T07:46:27Z] Running step ocp-e2e-aws-ovn-multi-a-a-gather-core-dump. +INFO[2025-09-02T07:46:45Z] Step ocp-e2e-aws-ovn-multi-a-a-gather-core-dump succeeded after 17s. +INFO[2025-09-02T07:46:45Z] Running step ocp-e2e-aws-ovn-multi-a-a-gather-must-gather. +INFO[2025-09-02T07:49:05Z] Step ocp-e2e-aws-ovn-multi-a-a-gather-must-gather succeeded after 2m20s. +INFO[2025-09-02T07:49:05Z] Running step ocp-e2e-aws-ovn-multi-a-a-gather-extra. +INFO[2025-09-02T07:54:05Z] Step ocp-e2e-aws-ovn-multi-a-a-gather-extra succeeded after 5m0s. +INFO[2025-09-02T07:54:05Z] Running step ocp-e2e-aws-ovn-multi-a-a-gather-audit-logs. +INFO[2025-09-02T07:54:55Z] Step ocp-e2e-aws-ovn-multi-a-a-gather-audit-logs succeeded after 49s. +INFO[2025-09-02T07:54:55Z] Running step ocp-e2e-aws-ovn-multi-a-a-ipi-deprovision-deprovision. +INFO[2025-09-02T07:59:16Z] Step ocp-e2e-aws-ovn-multi-a-a-ipi-deprovision-deprovision succeeded after 4m21s. +INFO[2025-09-02T07:59:16Z] Step phase post succeeded after 15m17s. +INFO[2025-09-02T07:59:16Z] Releasing ip pool leases for test ocp-e2e-aws-ovn-multi-a-a +INFO[2025-09-02T07:59:16Z] Releasing leases for test ocp-e2e-aws-ovn-multi-a-a +INFO[2025-09-02T07:59:17Z] Ran for 2h9m17s +INFO[2025-09-02T07:59:17Z] Reporting job state 'succeeded' \ No newline at end of file diff --git a/sub_agents/installation_analyst/test_artifacts/failing-build-log-2.txt b/sub_agents/installation_analyst/test_artifacts/failing-build-log-2.txt new file mode 100644 index 0000000..728d813 --- /dev/null +++ b/sub_agents/installation_analyst/test_artifacts/failing-build-log-2.txt @@ -0,0 +1,23119 @@ +INFO[2025-09-02T05:50:08Z] ci-operator version v20250901-d01622205 +INFO[2025-09-02T05:50:08Z] Loading configuration from https://config.ci.openshift.org for openshift/multiarch@master [nightly-4.21] +INFO[2025-09-02T05:50:09Z] Resolved SHA missing for master in https://github.com/openshift/multiarch (will prevent caching) +WARN[2025-09-02T05:50:09Z] skipped directory "..2025_09_02_05_50_02.1390656844" when creating secret from directory "/secrets/ci-pull-credentials" +INFO[2025-09-02T05:50:10Z] Requesting a release from https://arm64.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-arm64/latest?rel=1 +INFO[2025-09-02T05:50:10Z] Resolved release arm64-initial to registry.ci.openshift.org/ocp-arm64/release-arm64:4.21.0-0.nightly-arm64-2025-09-01-180149 +INFO[2025-09-02T05:50:10Z] Requesting a release from https://arm64.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-arm64/latest +INFO[2025-09-02T05:50:10Z] Resolved release arm64-latest to registry.ci.openshift.org/ocp-arm64/release-arm64:4.21.0-0.nightly-arm64-2025-09-02-000149 +INFO[2025-09-02T05:50:10Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest?rel=1 +INFO[2025-09-02T05:50:10Z] Resolved release initial to quay.io/openshift-release-dev/ocp-release-nightly@sha256:b37d7e7d6d7b5eb536b246b9a62fcb478a010293b36a79542a3a5d0164b750e8 +INFO[2025-09-02T05:50:10Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest +INFO[2025-09-02T05:50:10Z] Resolved release latest to quay.io/openshift-release-dev/ocp-release-nightly@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213 +INFO[2025-09-02T05:50:10Z] Requesting a release from https://ppc64le.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-ppc64le/latest +INFO[2025-09-02T05:50:10Z] Resolved release ppc64le-latest to registry.ci.openshift.org/ocp-ppc64le/release-ppc64le:4.21.0-0.nightly-ppc64le-2025-09-02-000150 +INFO[2025-09-02T05:50:10Z] Requesting a release from https://s390x.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-s390x/latest +INFO[2025-09-02T05:50:10Z] Resolved release s390x-latest to registry.ci.openshift.org/ocp-s390x/release-s390x:4.21.0-0.nightly-s390x-2025-09-02-000149 +INFO[2025-09-02T05:50:11Z] Using namespace https://console.build02.ci.openshift.org/k8s/cluster/projects/ci-op-0k0qibps +INFO[2025-09-02T05:50:11Z] Running [input:upi-installer], [input:origin-centos-8], [input:ocp-4.12-upi-installer], [input:ocp-4.16-upi-installer], [input:ocp-4.14-upi-installer], [release:latest], [images], ocp-e2e-gcp-ovn-multi-x-ax +INFO[2025-09-02T05:50:12Z] Loading information from https://config.ci.openshift.org for cluster profile gcp-arm64 +INFO[2025-09-02T05:50:12Z] Tagging origin/centos:8 into pipeline:origin-centos-8. +INFO[2025-09-02T05:50:12Z] Tagging ocp/4.14:upi-installer into pipeline:ocp-4.14-upi-installer. +INFO[2025-09-02T05:50:12Z] Tagging ocp/4.16:upi-installer into pipeline:ocp-4.16-upi-installer. +INFO[2025-09-02T05:50:12Z] Tagging ocp/4.12:upi-installer into pipeline:ocp-4.12-upi-installer. +INFO[2025-09-02T05:50:12Z] Tagging ocp/4.21:upi-installer into pipeline:upi-installer. +INFO[2025-09-02T05:50:12Z] Importing release image latest. +INFO[2025-09-02T05:50:12Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest +INFO[2025-09-02T05:50:12Z] Resolved release latest to quay.io/openshift-release-dev/ocp-release-nightly@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213 +INFO[2025-09-02T05:50:26Z] Importing release 4.21.0-0.nightly-multi-2025-09-01-223641 created at 2025-09-01 22:37:27 +0000 UTC with 191 images to tag release:latest ... +INFO[2025-09-02T05:53:32Z] Imported release 4.21.0-0.nightly-multi-2025-09-01-223641 created at 2025-09-01 22:37:27 +0000 UTC with 191 images to tag release:latest +INFO[2025-09-02T05:53:32Z] Acquiring leases for test ocp-e2e-gcp-ovn-multi-x-ax: [gcp-arm64-quota-slice] +INFO[2025-09-02T05:53:32Z] Acquired 1 lease(s) for gcp-arm64-quota-slice: [us-central1--gcp-arm64-quota-slice-29] +INFO[2025-09-02T05:53:32Z] Running multi-stage test ocp-e2e-gcp-ovn-multi-x-ax +INFO[2025-09-02T05:53:32Z] Running multi-stage phase pre +INFO[2025-09-02T05:53:32Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-conf. +INFO[2025-09-02T05:53:50Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-conf succeeded after 17s. +INFO[2025-09-02T05:53:50Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-conf-telemetry. +INFO[2025-09-02T05:54:49Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-conf-telemetry succeeded after 58s. +INFO[2025-09-02T05:54:49Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-conf-gcp. +INFO[2025-09-02T05:55:35Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-conf-gcp succeeded after 46s. +INFO[2025-09-02T05:55:35Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-monitoringpvc. +INFO[2025-09-02T05:55:46Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-monitoringpvc succeeded after 11s. +INFO[2025-09-02T05:55:46Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ovn-conf. +INFO[2025-09-02T05:56:12Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ovn-conf succeeded after 25s. +INFO[2025-09-02T05:56:12Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-rbac. +INFO[2025-09-02T05:56:24Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-rbac succeeded after 12s. +INFO[2025-09-02T05:56:24Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-openshift-cluster-bot-rbac. +INFO[2025-09-02T05:56:34Z] Step ocp-e2e-gcp-ovn-multi-x-ax-openshift-cluster-bot-rbac succeeded after 9s. +INFO[2025-09-02T05:56:34Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-hosted-loki. +INFO[2025-09-02T05:56:42Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-hosted-loki succeeded after 8s. +INFO[2025-09-02T05:56:42Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-install. +INFO[2025-09-02T06:38:38Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-install succeeded after 41m55s. +INFO[2025-09-02T06:38:38Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-times-collection. +INFO[2025-09-02T06:38:46Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-times-collection succeeded after 8s. +INFO[2025-09-02T06:38:46Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-nodes-readiness. +INFO[2025-09-02T06:39:05Z] Step ocp-e2e-gcp-ovn-multi-x-ax-nodes-readiness succeeded after 18s. +INFO[2025-09-02T06:39:05Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-multiarch-validate-nodes. +INFO[2025-09-02T06:40:20Z] Step ocp-e2e-gcp-ovn-multi-x-ax-multiarch-validate-nodes succeeded after 1m15s. +INFO[2025-09-02T06:40:20Z] Step phase pre succeeded after 46m48s. +INFO[2025-09-02T06:40:20Z] Running multi-stage phase test +INFO[2025-09-02T06:40:20Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-heterogeneous. +INFO[2025-09-02T06:49:37Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-install-heterogeneous succeeded after 9m16s. +INFO[2025-09-02T06:49:37Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-openshift-e2e-test. +INFO[2025-09-02T07:52:47Z] Logs for container test in pod ocp-e2e-gcp-ovn-multi-x-ax-openshift-e2e-test: +INFO[2025-09-02T07:52:47Z] Granting access for image pulling from the build farm... +clusterrole.rbac.authorization.k8s.io/system:image-puller added: "system:unauthenticated" +secret/support created +/tmp /tmp/output + % Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 +100 82.3M 100 82.3M 0 0 148M 0 --:--:-- --:--:-- --:--:-- 148M +Activated service account credentials for: [do-not-delete-ci-provisioner@XXXXXXXXXXXXXXXXXXXXXX.iam.gserviceaccount.com] +Updated property [core/project]. +/tmp/output +configmap/admin-acks patched +clusterversion.config.openshift.io/version condition met +Tue Sep 2 06:50:02 UTC 2025 - node count (8) now matches or exceeds machine count (8) +Tue Sep 2 06:50:02 UTC 2025 - waiting for nodes to be ready... +node/ci-op-0k0qibps-871dd-dt55f-master-0 condition met +node/ci-op-0k0qibps-871dd-dt55f-master-1 condition met +node/ci-op-0k0qibps-871dd-dt55f-master-2 condition met +node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 condition met +node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 condition met +node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts condition met +node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s condition met +node/ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 condition met +Tue Sep 2 06:50:03 UTC 2025 - all nodes are ready +Tue Sep 2 06:50:03 UTC 2025 - waiting for clusteroperators to finish progressing... +clusteroperator.config.openshift.io/authentication condition met +clusteroperator.config.openshift.io/baremetal condition met +clusteroperator.config.openshift.io/cloud-controller-manager condition met +clusteroperator.config.openshift.io/cloud-credential condition met +clusteroperator.config.openshift.io/cluster-autoscaler condition met +clusteroperator.config.openshift.io/config-operator condition met +clusteroperator.config.openshift.io/console condition met +clusteroperator.config.openshift.io/control-plane-machine-set condition met +clusteroperator.config.openshift.io/csi-snapshot-controller condition met +clusteroperator.config.openshift.io/dns condition met +clusteroperator.config.openshift.io/etcd condition met +clusteroperator.config.openshift.io/image-registry condition met +clusteroperator.config.openshift.io/ingress condition met +clusteroperator.config.openshift.io/insights condition met +clusteroperator.config.openshift.io/kube-apiserver condition met +clusteroperator.config.openshift.io/kube-controller-manager condition met +clusteroperator.config.openshift.io/kube-scheduler condition met +clusteroperator.config.openshift.io/kube-storage-version-migrator condition met +clusteroperator.config.openshift.io/machine-api condition met +clusteroperator.config.openshift.io/machine-approver condition met +clusteroperator.config.openshift.io/machine-config condition met +clusteroperator.config.openshift.io/marketplace condition met +clusteroperator.config.openshift.io/monitoring condition met +clusteroperator.config.openshift.io/network condition met +clusteroperator.config.openshift.io/node-tuning condition met +clusteroperator.config.openshift.io/olm condition met +clusteroperator.config.openshift.io/openshift-apiserver condition met +clusteroperator.config.openshift.io/openshift-controller-manager condition met +clusteroperator.config.openshift.io/openshift-samples condition met +clusteroperator.config.openshift.io/operator-lifecycle-manager condition met +clusteroperator.config.openshift.io/operator-lifecycle-manager-catalog condition met +clusteroperator.config.openshift.io/operator-lifecycle-manager-packageserver condition met +clusteroperator.config.openshift.io/service-ca condition met +clusteroperator.config.openshift.io/storage condition met +Tue Sep 2 06:50:08 UTC 2025 - all clusteroperators are done progressing. +Tue Sep 2 06:50:08 UTC 2025 - waiting for oc adm wait-for-stable-cluster... +Tue Sep 2 06:52:18 UTC 2025 - oc adm reports cluster is stable. +[Tue Sep 2 06:52:18 UTC 2025] waiting for non-samples imagesteams to import... +[Tue Sep 2 06:52:19 UTC 2025] All imagestreams are imported. +I0902 06:52:19.224911 322 factory.go:195] Registered Plugin "containerd" +time="2025-09-02T06:52:19Z" level=warning msg="ENABLE_STORAGE_GCE_PD_DRIVER is set, but is not supported" +time="2025-09-02T06:52:19Z" level=info msg="Using env RELEASE_IMAGE_LATEST for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\"" +time="2025-09-02T06:52:19Z" level=info msg="Detected /run/secrets/ci.openshift.io/cluster-profile/pull-secret; using cluster profile for image access" +time="2025-09-02T06:52:19Z" level=info msg="Cleaning up older cached data..." +time="2025-09-02T06:52:19Z" level=warning msg="Failed to read cache directory '/tmp/home/.cache/openshift-tests': open /tmp/home/.cache/openshift-tests: no such file or directory" +time="2025-09-02T06:52:19Z" level=info msg="External binary cache is enabled" cache_dir=/tmp/home/.cache/openshift-tests +time="2025-09-02T06:52:19Z" level=info msg="Using path for binaries /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03" +time="2025-09-02T06:52:19Z" level=info msg="Run image extract for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\" and src \"/release-manifests/image-references\"" +time="2025-09-02T06:52:24Z" level=info msg="Completed image extract for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\" in 5.316573611s" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:dd581194f8cb2d1175debad0af1f29784675f4992afb6d3b8e458924607c8672\" and src \"/usr/bin/cluster-storage-operator-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:ccbe8808342485f49ed192fd6a1b0fdd948e4d08cd5a308a6f2b8ac944c08b06\" and src \"/usr/bin/openshift-apiserver-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:df72d259acb1c9bf540253dbca8bd5ebebd76588b6c0e8a6f08ba19f109f38ec\" and src \"/machine-api-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:f19b560738b0788786f1534fb0707581bd663d40b787534012dc09b6a06556ca\" and src \"/usr/bin/machine-config-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:a572892b57aa4c45f079e93d30db03889bafe5bf0759aa94a2e035370a4008f0\" and src \"/usr/bin/olmv1-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:71f5e4153dbee61316ad0a99f8f6b6aa4cac28828b119764943e5b4eaf6c33cb\" and src \"/usr/bin/cluster-monitoring-operator-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:be3d04f471205944be8707067cc320a8ed8aca7d5671f3f5c75d7483051d87d6\" and src \"/usr/bin/cluster-kube-apiserver-operator-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:877eaac7e97a5fa697077bb7beacf930162eb6a028369c2415116ee8cd70309e\" and src \"/usr/bin/cluster-openshift-apiserver-operator-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:3bd150b761d07e50b27dea0c8f07be8c4177aef6f1175bafcb941edc4ba5e269\" and src \"/usr/bin/k8s-tests-ext.gz\"" +time="2025-09-02T06:52:24Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1ce4d639d2ddd8229817f194de831a6c97719c8a10f82559dc193c2e8c6dbca8\" and src \"/usr/bin/oauth-apiserver-tests-ext.gz\"" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:71f5e4153dbee61316ad0a99f8f6b6aa4cac28828b119764943e5b4eaf6c33cb\" in 6.046814145s" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1ce4d639d2ddd8229817f194de831a6c97719c8a10f82559dc193c2e8c6dbca8\" in 6.191216725s" +time="2025-09-02T06:52:31Z" level=info msg="Extracted /usr/bin/cluster-monitoring-operator-tests-ext.gz for tag cluster-monitoring-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:71f5e4153dbee61316ad0a99f8f6b6aa4cac28828b119764943e5b4eaf6c33cb (disk size 21524406, extraction duration 6.046882585s)" +time="2025-09-02T06:52:31Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e90b97f638b3fd0d9b45e18fb1799cc60a6776e27ec194038e750fe8942ac60a\" and src \"/usr/bin/service-ca-operator-tests-ext.gz\"" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:877eaac7e97a5fa697077bb7beacf930162eb6a028369c2415116ee8cd70309e\" in 6.328906226s" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:a572892b57aa4c45f079e93d30db03889bafe5bf0759aa94a2e035370a4008f0\" in 6.367134247s" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:dd581194f8cb2d1175debad0af1f29784675f4992afb6d3b8e458924607c8672\" in 6.378949655s" +time="2025-09-02T06:52:31Z" level=info msg="Extracted /usr/bin/oauth-apiserver-tests-ext.gz for tag oauth-apiserver from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:1ce4d639d2ddd8229817f194de831a6c97719c8a10f82559dc193c2e8c6dbca8 (disk size 21865152, extraction duration 6.191279895s)" +time="2025-09-02T06:52:31Z" level=info msg="Run image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c5f3c46980a44a5c8c3d45338d01d9e29cfd22c45059dd45b9377268576ca6d2\" and src \"/usr/bin/cluster-kube-controller-manager-operator-tests-ext.gz\"" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:be3d04f471205944be8707067cc320a8ed8aca7d5671f3f5c75d7483051d87d6\" in 6.552191768s" +time="2025-09-02T06:52:31Z" level=info msg="Extracted /usr/bin/cluster-openshift-apiserver-operator-tests-ext.gz for tag cluster-openshift-apiserver-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:877eaac7e97a5fa697077bb7beacf930162eb6a028369c2415116ee8cd70309e (disk size 21876500, extraction duration 6.329004505s)" +time="2025-09-02T06:52:31Z" level=info msg="Extracted /usr/bin/cluster-kube-apiserver-operator-tests-ext.gz for tag cluster-kube-apiserver-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:be3d04f471205944be8707067cc320a8ed8aca7d5671f3f5c75d7483051d87d6 (disk size 21864590, extraction duration 6.552261818s)" +time="2025-09-02T06:52:31Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:ccbe8808342485f49ed192fd6a1b0fdd948e4d08cd5a308a6f2b8ac944c08b06\" in 6.87288252s" +time="2025-09-02T06:52:32Z" level=info msg="Extracted /usr/bin/olmv1-tests-ext.gz for tag olm-operator-controller from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:a572892b57aa4c45f079e93d30db03889bafe5bf0759aa94a2e035370a4008f0 (disk size 72908112, extraction duration 6.367247237s)" +time="2025-09-02T06:52:32Z" level=info msg="Extracted /usr/bin/cluster-storage-operator-tests-ext.gz for tag cluster-storage-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:dd581194f8cb2d1175debad0af1f29784675f4992afb6d3b8e458924607c8672 (disk size 76925672, extraction duration 6.379133535s)" +time="2025-09-02T06:52:32Z" level=info msg="Extracted /usr/bin/openshift-apiserver-tests-ext.gz for tag openshift-apiserver from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:ccbe8808342485f49ed192fd6a1b0fdd948e4d08cd5a308a6f2b8ac944c08b06 (disk size 21867536, extraction duration 6.87297126s)" +time="2025-09-02T06:52:34Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:3bd150b761d07e50b27dea0c8f07be8c4177aef6f1175bafcb941edc4ba5e269\" in 9.047931488s" +time="2025-09-02T06:52:34Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:df72d259acb1c9bf540253dbca8bd5ebebd76588b6c0e8a6f08ba19f109f38ec\" in 9.531992835s" +time="2025-09-02T06:52:35Z" level=info msg="Extracted /usr/bin/k8s-tests-ext.gz for tag hyperkube from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:3bd150b761d07e50b27dea0c8f07be8c4177aef6f1175bafcb941edc4ba5e269 (disk size 128032168, extraction duration 9.048029208s)" +time="2025-09-02T06:52:35Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:f19b560738b0788786f1534fb0707581bd663d40b787534012dc09b6a06556ca\" in 10.419026317s" +time="2025-09-02T06:52:36Z" level=info msg="Extracted /usr/bin/machine-config-tests-ext.gz for tag machine-config-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:f19b560738b0788786f1534fb0707581bd663d40b787534012dc09b6a06556ca (disk size 93055696, extraction duration 10.419116456s)" +time="2025-09-02T06:52:36Z" level=info msg="Extracted /machine-api-tests-ext.gz for tag machine-api-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:df72d259acb1c9bf540253dbca8bd5ebebd76588b6c0e8a6f08ba19f109f38ec (disk size 207833008, extraction duration 9.532050125s)" +time="2025-09-02T06:52:36Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e90b97f638b3fd0d9b45e18fb1799cc60a6776e27ec194038e750fe8942ac60a\" in 5.433020456s" +time="2025-09-02T06:52:36Z" level=info msg="Completed image extract for release image \"quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c5f3c46980a44a5c8c3d45338d01d9e29cfd22c45059dd45b9377268576ca6d2\" in 5.456046721s" +time="2025-09-02T06:52:36Z" level=info msg="Extracted /usr/bin/service-ca-operator-tests-ext.gz for tag service-ca-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:e90b97f638b3fd0d9b45e18fb1799cc60a6776e27ec194038e750fe8942ac60a (disk size 21780639, extraction duration 5.433080466s)" +time="2025-09-02T06:52:37Z" level=info msg="Extracted /usr/bin/cluster-kube-controller-manager-operator-tests-ext.gz for tag cluster-kube-controller-manager-operator from quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:c5f3c46980a44a5c8c3d45338d01d9e29cfd22c45059dd45b9377268576ca6d2 (disk size 21868852, extraction duration 5.456114091s)" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for openshift-tests" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for cluster-monitoring-operator-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for cluster-openshift-apiserver-operator-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for oauth-apiserver-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for cluster-openshift-apiserver-operator-tests-ext in 7.608939ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for cluster-kube-apiserver-operator-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for cluster-monitoring-operator-tests-ext in 8.761978ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for olmv1-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for oauth-apiserver-tests-ext in 9.334638ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for cluster-storage-operator-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for cluster-kube-apiserver-operator-tests-ext in 10.920228ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for openshift-apiserver-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for openshift-apiserver-tests-ext in 6.820309ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for k8s-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for cluster-storage-operator-tests-ext in 30.860263ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for machine-config-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for olmv1-tests-ext in 31.603533ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for machine-api-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for machine-config-tests-ext in 100.540748ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for service-ca-operator-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for service-ca-operator-tests-ext in 7.485389ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetching info for cluster-kube-controller-manager-operator-tests-ext" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for cluster-kube-controller-manager-operator-tests-ext in 6.772128ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for machine-api-tests-ext in 455.751754ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for k8s-tests-ext in 488.998396ms" +time="2025-09-02T06:52:37Z" level=info msg="Fetched info for openshift-tests in 618.433439ms" + I0902 06:52:37.994386 322 framework.go:2317] microshift-version configmap not found +time="2025-09-02T06:52:38Z" level=info msg="Using env RELEASE_IMAGE_LATEST for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\"" +time="2025-09-02T06:52:38Z" level=info msg="Detected /run/secrets/ci.openshift.io/cluster-profile/pull-secret; using cluster profile for image access" +time="2025-09-02T06:52:38Z" level=info msg="Cleaning up older cached data..." +time="2025-09-02T06:52:38Z" level=info msg="Cleaned up old cached data in 10.409µs" +time="2025-09-02T06:52:38Z" level=info msg="External binary cache is enabled" cache_dir=/tmp/home/.cache/openshift-tests +time="2025-09-02T06:52:38Z" level=info msg="Using path for binaries /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/k8s-tests-ext for tag hyperkube" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/service-ca-operator-tests-ext for tag service-ca-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-kube-controller-manager-operator-tests-ext for tag cluster-kube-controller-manager-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-monitoring-operator-tests-ext for tag cluster-monitoring-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/machine-api-tests-ext for tag machine-api-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/olmv1-tests-ext for tag olm-operator-controller" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/oauth-apiserver-tests-ext for tag oauth-apiserver" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-storage-operator-tests-ext for tag cluster-storage-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-kube-apiserver-operator-tests-ext for tag cluster-kube-apiserver-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/openshift-apiserver-tests-ext for tag openshift-apiserver" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-openshift-apiserver-operator-tests-ext for tag cluster-openshift-apiserver-operator" +time="2025-09-02T06:52:38Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/machine-config-tests-ext for tag machine-config-operator" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info from 13 extension binaries" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for openshift-tests" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for cluster-kube-controller-manager-operator-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for cluster-kube-apiserver-operator-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for olmv1-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for cluster-monitoring-operator-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for machine-api-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for service-ca-operator-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for oauth-apiserver-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for k8s-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for cluster-storage-operator-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for cluster-kube-controller-manager-operator-tests-ext in 7.255948ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for openshift-apiserver-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for cluster-monitoring-operator-tests-ext in 7.969888ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for cluster-openshift-apiserver-operator-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for cluster-kube-apiserver-operator-tests-ext in 8.250228ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetching info for machine-config-tests-ext" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for service-ca-operator-tests-ext in 8.895738ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for oauth-apiserver-tests-ext in 8.560799ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for openshift-apiserver-tests-ext in 7.330008ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for cluster-openshift-apiserver-operator-tests-ext in 8.041758ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for olmv1-tests-ext in 29.254953ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for cluster-storage-operator-tests-ext in 29.074984ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for machine-config-tests-ext in 87.632261ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for machine-api-tests-ext in 411.273542ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for k8s-tests-ext in 470.67786ms" +time="2025-09-02T06:52:38Z" level=info msg="Fetched info for openshift-tests in 550.530783ms" +time="2025-09-02T06:52:38Z" level=info msg="Discovered 13 extensions" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:cluster-kube-controller-manager-operator found in cluster-kube-controller-manager-operator:cluster-kube-controller-manager-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:cluster-monitoring-operator found in cluster-monitoring-operator:cluster-monitoring-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:cluster-kube-apiserve-operator found in cluster-kube-apiserver-operator:cluster-kube-apiserver-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:service-ca-operator found in service-ca-operator:service-ca-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:oauth-apiserver found in oauth-apiserver:oauth-apiserver-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:openshift-apiserver found in openshift-apiserver:openshift-apiserver-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:cluster-openshift-apiserver-operator found in cluster-openshift-apiserver-operator:cluster-openshift-apiserver-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:olmv1 found in olm-operator-controller:olmv1-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:cluster-storage-operator found in cluster-storage-operator:cluster-storage-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:machine-config-operator found in machine-config-operator:machine-config-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:machine-api-operator found in machine-api-operator:machine-api-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:hyperkube found in hyperkube:k8s-tests-ext using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Extension openshift:payload:origin found in tests:openshift-tests using API version v1.1" +time="2025-09-02T06:52:38Z" level=info msg="Determined all potential environment flags" api-group="[autoscaling batch coordination.k8s.io discovery.k8s.io migration.k8s.io operator.openshift.io events.k8s.io admissionregistration.k8s.io ingress.operator.openshift.io monitoring.openshift.io networking.k8s.io flowcontrol.apiserver.k8s.io apps.openshift.io build.openshift.io oauth.openshift.io project.openshift.io console.openshift.io infrastructure.cluster.x-k8s.io policy storage.k8s.io security.openshift.io machineconfiguration.openshift.io operators.coreos.com performance.openshift.io samples.operator.openshift.io apps whereabouts.cni.cncf.io certificates.k8s.io authorization.openshift.io monitoring.coreos.com authorization.k8s.io node.k8s.io image.openshift.io config.openshift.io apiregistration.k8s.io route.openshift.io template.openshift.io helm.openshift.io apiextensions.k8s.io quota.openshift.io ipam.cluster.x-k8s.io security.internal.openshift.io tuned.openshift.io metrics.k8s.io rbac.authorization.k8s.io populator.storage.k8s.io packages.operators.coreos.com k8s.cni.cncf.io olm.operatorframework.io user.openshift.io cloud.network.openshift.io imageregistry.operator.openshift.io network.operator.openshift.io policy.networking.k8s.io authentication.k8s.io autoscaling.openshift.io k8s.ovn.org machine.openshift.io cloudcredential.openshift.io controlplane.operator.openshift.io gateway.networking.k8s.io metal3.io scheduling.k8s.io apiserver.openshift.io snapshot.storage.k8s.io]" architecture="[amd64]" external-connectivity="[Direct]" feature-gate="[IngressControllerLBSubnetsAWS AuthorizeNodeWithSelectors InPlacePodVerticalScaling StrictCostEnforcementForWebhooks DRAResourceClaimDeviceStatus NFTablesProxyMode TopologyAwareHints OrderedNamespaceDeletion GatewayAPIController CRDValidationRatcheting JobSuccessPolicy LoggingBetaOptions SidecarContainers ProcMountType RecursiveReadOnlyMounts RetryGenerateName UnauthenticatedHTTP2DOSMitigation SchedulerQueueingHints RouteAdvertisements ConsolePluginContentSecurityPolicy AllowParsingUserUIDFromCertAuth KubeletTracing SELinuxMountReadWriteOncePod SupplementalGroupsPolicy CPMSMachineNamePrefix ImageVolume UserNamespacesPodSecurityStandards UserNamespacesSupport VSphereMultiNetworks CustomResourceFieldSelectors ResilientWatchCacheInitialization ServiceAccountTokenNodeBindingValidation AzureWorkloadIdentity APIServerIdentity DeclarativeValidation DisableNodeKubeProxyVersion InOrderInformers RemoteRequestHeaderUID StatefulSetAutoDeletePVC PodLifecycleSleepAction AdditionalRoutingCapabilities ManagedBootImagesAWS NetworkDiagnosticsConfig AnonymousAuthConfigurableEndpoints CSIMigrationPortworx HonorPVReclaimPolicy BuildCSIVolumes PodIndexLabel ServiceAccountTokenJTI MultiCIDRServiceAllocator CPUManagerPolicyOptions SigstoreImageVerification AnyVolumeDataSource JobBackoffLimitPerIndex WinDSR ManagedBootImages NewOLM KubeletCgroupDriverFromCRI PortForwardWebsockets NetworkLiveMigration OpenShiftPodSecurityAdmission RouteExternalCertificate SizeMemoryBackedVolumes StreamingCollectionEncodingToJSON PinnedImages KubeletSeparateDiskGC MemoryManager NodeInclusionPolicyInPodTopologySpread RelaxedEnvironmentVariableValidation StatefulSetStartOrdinal AdminNetworkPolicy MatchLabelKeysInPodTopologySpread HighlyAvailableArbiter MetricsCollectionProfiles SetEIPForNLBIngressController APIResponseCompression DevicePluginCDIDevices GracefulNodeShutdown ImageMaximumGCAge LoadBalancerIPMode StoragePerformantSecurityPolicy ElasticIndexedJob MatchLabelKeysInPodAffinity RotateKubeletServerCertificate ServiceAccountNodeAudienceRestriction ServiceTrafficDistribution SchedulerPopFromBackoffQ MachineConfigNodes ComponentSLIs ContainerCheckpoint AggregatedDiscoveryRemoveBetaType AuthorizeWithSelectors StorageVersionHash StructuredAuthenticationConfiguration StructuredAuthorizationConfiguration SystemdWatchdog VSphereMultiDisk NodeLogQuery PodDeletionCost RelaxedDNSSearchValidation StrictCostEnforcementForVAP KubeletFineGrainedAuthz ContextualLogging AlibabaPlatform UpgradeStatus PodReadyToStartContainersCondition PodSchedulingReadiness TopologyManagerPolicyBetaOptions WinOverlay BtreeWatchCache RecoverVolumeExpansionFailure ReloadKubeletServerCertificateFile StorageNamespaceIndex GatewayAPI CPUManagerPolicyBetaOptions ConsistentListFromCache ExecProbeTimeout LogarithmicScaleDown KMSv1 APIServerTracing CronJobsScheduledAnnotation GracefulNodeShutdownBasedOnPodPriority JobManagedBy JobPodReplacementPolicy SchedulerAsyncPreemption StreamingCollectionEncodingToProtobuf NetworkSegmentation OpenAPIEnums PodDisruptionConditions PodLifecycleSleepActionAllowZero SELinuxChangePolicy ServiceAccountTokenNodeBinding TopologyManagerPolicyOptions DisableCPUQuotaWithExclusiveCPUs SeparateTaintEvictionController ServiceAccountTokenPodNodeInfo]" network="[OVNKubernetes]" network-stack="[ipv4]" optional-capability="[Build CSISnapshot CloudControllerManager CloudCredential Console DeploymentConfig ImageRegistry Ingress Insights MachineAPI NodeTuning OperatorLifecycleManager OperatorLifecycleManagerV1 Storage baremetal marketplace openshift-samples]" platform="[gce]" topology="[HighlyAvailable]" upgrade="[None]" version="[4.21.0-0.nightly-multi-2025-09-01-223641]" +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=openshift-tests +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=openshift-tests +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=k8s-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=k8s-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=openshift-tests +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=machine-api-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=machine-api-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=machine-api-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=k8s-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=olmv1-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=olmv1-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=olmv1-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 10.944948ms" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 11.148527ms" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 11.648137ms" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listing tests" binary=machine-config-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="OTE API version is: v1.1" binary=machine-config-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 11.803428ms" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=autoscaling --api-group=batch --api-group=coordination.k8s.io --api-group=discovery.k8s.io --api-group=migration.k8s.io --api-group=operator.openshift.io --api-group=events.k8s.io --api-group=admissionregistration.k8s.io --api-group=ingress.operator.openshift.io --api-group=monitoring.openshift.io --api-group=networking.k8s.io --api-group=flowcontrol.apiserver.k8s.io --api-group=apps.openshift.io --api-group=build.openshift.io --api-group=oauth.openshift.io --api-group=project.openshift.io --api-group=console.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=policy --api-group=storage.k8s.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=performance.openshift.io --api-group=samples.operator.openshift.io --api-group=apps --api-group=whereabouts.cni.cncf.io --api-group=certificates.k8s.io --api-group=authorization.openshift.io --api-group=monitoring.coreos.com --api-group=authorization.k8s.io --api-group=node.k8s.io --api-group=image.openshift.io --api-group=config.openshift.io --api-group=apiregistration.k8s.io --api-group=route.openshift.io --api-group=template.openshift.io --api-group=helm.openshift.io --api-group=apiextensions.k8s.io --api-group=quota.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=security.internal.openshift.io --api-group=tuned.openshift.io --api-group=metrics.k8s.io --api-group=rbac.authorization.k8s.io --api-group=populator.storage.k8s.io --api-group=packages.operators.coreos.com --api-group=k8s.cni.cncf.io --api-group=olm.operatorframework.io --api-group=user.openshift.io --api-group=cloud.network.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=network.operator.openshift.io --api-group=policy.networking.k8s.io --api-group=authentication.k8s.io --api-group=autoscaling.openshift.io --api-group=k8s.ovn.org --api-group=machine.openshift.io --api-group=cloudcredential.openshift.io --api-group=controlplane.operator.openshift.io --api-group=gateway.networking.k8s.io --api-group=metal3.io --api-group=scheduling.k8s.io --api-group=apiserver.openshift.io --api-group=snapshot.storage.k8s.io --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=AuthorizeNodeWithSelectors --feature-gate=InPlacePodVerticalScaling --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=NFTablesProxyMode --feature-gate=TopologyAwareHints --feature-gate=OrderedNamespaceDeletion --feature-gate=GatewayAPIController --feature-gate=CRDValidationRatcheting --feature-gate=JobSuccessPolicy --feature-gate=LoggingBetaOptions --feature-gate=SidecarContainers --feature-gate=ProcMountType --feature-gate=RecursiveReadOnlyMounts --feature-gate=RetryGenerateName --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=SchedulerQueueingHints --feature-gate=RouteAdvertisements --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=KubeletTracing --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=SupplementalGroupsPolicy --feature-gate=CPMSMachineNamePrefix --feature-gate=ImageVolume --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=UserNamespacesSupport --feature-gate=VSphereMultiNetworks --feature-gate=CustomResourceFieldSelectors --feature-gate=ResilientWatchCacheInitialization --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=AzureWorkloadIdentity --feature-gate=APIServerIdentity --feature-gate=DeclarativeValidation --feature-gate=DisableNodeKubeProxyVersion --feature-gate=InOrderInformers --feature-gate=RemoteRequestHeaderUID --feature-gate=StatefulSetAutoDeletePVC --feature-gate=PodLifecycleSleepAction --feature-gate=AdditionalRoutingCapabilities --feature-gate=ManagedBootImagesAWS --feature-gate=NetworkDiagnosticsConfig --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=CSIMigrationPortworx --feature-gate=HonorPVReclaimPolicy --feature-gate=BuildCSIVolumes --feature-gate=PodIndexLabel --feature-gate=ServiceAccountTokenJTI --feature-gate=MultiCIDRServiceAllocator --feature-gate=CPUManagerPolicyOptions --feature-gate=SigstoreImageVerification --feature-gate=AnyVolumeDataSource --feature-gate=JobBackoffLimitPerIndex --feature-gate=WinDSR --feature-gate=ManagedBootImages --feature-gate=NewOLM --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=PortForwardWebsockets --feature-gate=NetworkLiveMigration --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=RouteExternalCertificate --feature-gate=SizeMemoryBackedVolumes --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=PinnedImages --feature-gate=KubeletSeparateDiskGC --feature-gate=MemoryManager --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=StatefulSetStartOrdinal --feature-gate=AdminNetworkPolicy --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=HighlyAvailableArbiter --feature-gate=MetricsCollectionProfiles --feature-gate=SetEIPForNLBIngressController --feature-gate=APIResponseCompression --feature-gate=DevicePluginCDIDevices --feature-gate=GracefulNodeShutdown --feature-gate=ImageMaximumGCAge --feature-gate=LoadBalancerIPMode --feature-gate=StoragePerformantSecurityPolicy --feature-gate=ElasticIndexedJob --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=RotateKubeletServerCertificate --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=ServiceTrafficDistribution --feature-gate=SchedulerPopFromBackoffQ --feature-gate=MachineConfigNodes --feature-gate=ComponentSLIs --feature-gate=ContainerCheckpoint --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AuthorizeWithSelectors --feature-gate=StorageVersionHash --feature-gate=StructuredAuthenticationConfiguration --feature-gate=StructuredAuthorizationConfiguration --feature-gate=SystemdWatchdog --feature-gate=VSphereMultiDisk --feature-gate=NodeLogQuery --feature-gate=PodDeletionCost --feature-gate=RelaxedDNSSearchValidation --feature-gate=StrictCostEnforcementForVAP --feature-gate=KubeletFineGrainedAuthz --feature-gate=ContextualLogging --feature-gate=AlibabaPlatform --feature-gate=UpgradeStatus --feature-gate=PodReadyToStartContainersCondition --feature-gate=PodSchedulingReadiness --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=WinOverlay --feature-gate=BtreeWatchCache --feature-gate=RecoverVolumeExpansionFailure --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=GatewayAPI --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=ConsistentListFromCache --feature-gate=ExecProbeTimeout --feature-gate=LogarithmicScaleDown --feature-gate=KMSv1 --feature-gate=APIServerTracing --feature-gate=CronJobsScheduledAnnotation --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobManagedBy --feature-gate=JobPodReplacementPolicy --feature-gate=SchedulerAsyncPreemption --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=NetworkSegmentation --feature-gate=OpenAPIEnums --feature-gate=PodDisruptionConditions --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SELinuxChangePolicy --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=TopologyManagerPolicyOptions --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=SeparateTaintEvictionController --feature-gate=ServiceAccountTokenPodNodeInfo --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=machine-config-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 18.691756ms" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 12.628997ms" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 1 tests in 17.062766ms" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 28 tests in 38.986412ms" binary=olmv1-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 6 tests in 40.043932ms" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:38Z" level=info msg="Listed 5 tests in 112.792346ms" binary=machine-config-tests-ext +time="2025-09-02T06:52:39Z" level=info msg="Listed 0 tests in 455.411963ms" binary=machine-api-tests-ext +time="2025-09-02T06:52:39Z" level=info msg="Listed 1040 tests in 627.770976ms" binary=openshift-tests +time="2025-09-02T06:52:39Z" level=info msg="Listed 5923 tests in 729.625025ms" binary=k8s-tests-ext +time="2025-09-02T06:52:39Z" level=info msg="Discovered 7009 total tests" +time="2025-09-02T06:52:39Z" level=info msg="Generated skips for cluster state" skips="[[Skipped:gce] [Skipped:Network/OVNKubernetes] [Feature:Networking-IPv6] [Feature:IPv6DualStack [Feature:SCTPConnectivity]]" +time="2025-09-02T06:52:39Z" level=info msg="Applying filter: suite-qualifiers" before=7009 component=test-filter filter=suite-qualifiers +time="2025-09-02T06:52:46Z" level=info msg="Filter suite-qualifiers completed - removed 3191 tests" after=3818 before=7009 component=test-filter filter=suite-qualifiers removed=3191 +time="2025-09-02T06:52:46Z" level=info msg="Applying filter: kube-rebase-tests" before=3818 component=test-filter filter=kube-rebase-tests +time="2025-09-02T06:52:46Z" level=info msg="Filter kube-rebase-tests completed - removed 0 tests" after=3818 before=3818 component=test-filter filter=kube-rebase-tests removed=0 +time="2025-09-02T06:52:46Z" level=info msg="Applying filter: disabled-tests" before=3818 component=test-filter filter=disabled-tests +time="2025-09-02T06:52:47Z" level=info msg="Filter disabled-tests completed - removed 0 tests" after=3818 before=3818 component=test-filter filter=disabled-tests removed=0 +time="2025-09-02T06:52:47Z" level=info msg="Applying filter: cluster-state" before=3818 component=test-filter filter=cluster-state +time="2025-09-02T06:52:47Z" level=info msg="Filter cluster-state completed - removed 191 tests" after=3627 before=3818 component=test-filter filter=cluster-state removed=191 +time="2025-09-02T06:52:47Z" level=info msg="Filter chain completed with 3627 tests" component=test-filter final_count=3627 +Skipping tests: +"[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for apps.openshift.io/v1, Resource=deploymentconfigs [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs adoption will orphan all RCs and adopt them back when recreated [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs generation should deploy based on a status version bump [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs ignores deployer and lets the config with a NewReplicationControllerCreated reason should let the deployment config with a NewReplicationControllerCreated reason [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs initially should not deploy if pods never transition to ready [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs keep the deployer pod invariant valid should deal with cancellation after deployer pod succeeded [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs keep the deployer pod invariant valid should deal with cancellation of running deployment [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs keep the deployer pod invariant valid should deal with config change in case the deployment is still running [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs paused should disable actions on deployments [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs rolled back should rollback to an older deployment [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs should adhere to Three Laws of Controllers [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs should respect image stream tag reference policy resolve the image pull spec [apigroup:apps.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs viewing rollout history should print the rollout history [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs when changing image change trigger should successfully trigger from an updated image [apigroup:apps.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs when run iteratively should immediately start a new deployment [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs when run iteratively should only deploy the last deployment [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs when tagging images should successfully tag the deployed image [apigroup:apps.openshift.io][apigroup:authorization.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with custom deployments should run the custom deployment steps [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with enhanced status should include various info in status [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with env in params referencing the configmap should expand the config map key to a value [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with failing hook should get all logs from retried hooks [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with minimum ready seconds set should not transition the deployment to Complete before satisfied [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with multiple image change triggers should run a successful deployment with a trigger used by different containers [apigroup:apps.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with multiple image change triggers should run a successful deployment with multiple triggers [apigroup:apps.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with revision history limits should never persist more old deployments than acceptable after being observed by the controller [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs with test deployments should run a deployment to completion and then scale to zero [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-apps][Feature:DeploymentConfig] deploymentconfigs won't deploy RC with unresolved images when patched with empty image [apigroup:apps.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-arch] Managed cluster should expose cluster services outside the cluster [apigroup:route.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-arch] [Conformance] FIPS TestFIPS [Suite:openshift/conformance/parallel/minimal]" +"[sig-builds][Feature:Builds] Multi-stage image builds should succeed [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] Optimized image builds should succeed [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] build can reference a cluster service with a build being created from new-build should be able to run a build that references a cluster service [apigroup:build.openshift.io] [Skipped:Disconnected] [Skipped:Proxy] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] custom build with buildah being created from new-build should complete build with custom builder image [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] oc new-app should succeed with a --name of 58 characters [apigroup:build.openshift.io] [Skipped:Disconnected] [Skipped:Proxy] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] oc new-app should succeed with an imagestream [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] prune builds based on settings in the buildconfig buildconfigs should have a default history limit set when created via the group api [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] prune builds based on settings in the buildconfig should prune builds after a buildConfig change [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] prune builds based on settings in the buildconfig should prune canceled builds based on the failedBuildsHistoryLimit setting [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] prune builds based on settings in the buildconfig should prune completed builds based on the successfulBuildsHistoryLimit setting [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] prune builds based on settings in the buildconfig should prune errored builds based on the failedBuildsHistoryLimit setting [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] prune builds based on settings in the buildconfig should prune failed builds based on the failedBuildsHistoryLimit setting [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] s2i build with a root user image should create a root build and fail without a privileged SCC [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] s2i build with a root user image should create a root build and pass with a privileged SCC [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] verify /run filesystem contents are writeable using a simple Docker Strategy Build [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds] verify /run filesystem contents do not have unexpected content using a simple Docker Strategy Build [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds][volumes] build volumes should mount given secrets and configmaps into the build pod for docker strategy builds [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-builds][Feature:Builds][volumes] build volumes should mount given secrets and configmaps into the build pod for source strategy builds [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-cli] oc can run inside of a busybox container [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug deployment from a build [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug dissect deployment config debug [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug dissect deployment debug [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug does not require a real resource on the server [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug ensure debug does not depend on a container actually existing for the selected resource [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug ensure debug does not depend on a container actually existing for the selected resource for deployment [Suite:openshift/conformance/parallel]" +"[sig-cli] oc debug ensure it works with image streams [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle Deployments [apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by all [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle Deployments [apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by label [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle Deployments [apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by name [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by all [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by checking previous scale [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by label [Suite:openshift/conformance/parallel]" +"[sig-cli] oc idle [apigroup:apps.openshift.io][apigroup:route.openshift.io][apigroup:project.openshift.io][apigroup:image.openshift.io] by name [Suite:openshift/conformance/parallel]" +"[sig-cli] oc probe can ensure the probe command is functioning as expected on deploymentconfigs [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-cluster-lifecycle] Pods cannot access the /config/master API endpoint [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-imageregistry][Feature:ImageAppend] Image append should create images by appending them [apigroup:image.openshift.io] [Skipped:Disconnected] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" +"[sig-imageregistry][Feature:ImageExtract] Image extract should extract content from an image [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-imageregistry][Feature:ImageInfo] Image info should display information about images [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-imageregistry][Feature:ImageLayers] Image layer subresource should identify a deleted image as missing [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-imageregistry][Feature:ImageLayers] Image layer subresource should return layers from tagged images [apigroup:image.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-imageregistry][Feature:Image] oc tag should change image reference for internal images [apigroup:build.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster should have a AlertmanagerReceiversNotConfigured alert in firing state [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster should have important platform topology metrics [apigroup:config.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster should have non-Pod host cAdvisor metrics [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster should provide ingress metrics [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster should provide named network metrics [apigroup:project.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster should start and expose a secured proxy and unsecured metrics [apigroup:config.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster shouldn't have failing rules evaluation [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster shouldn't report any alerts in firing state apart from Watchdog and AlertmanagerReceiversNotConfigured [Early][apigroup:config.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation][Late] OpenShift alerting rules [apigroup:image.openshift.io] should have a runbook_url annotation if the alert is critical [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation][Late] OpenShift alerting rules [apigroup:image.openshift.io] should have a valid severity label [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation][Late] OpenShift alerting rules [apigroup:image.openshift.io] should have description and summary annotations [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-instrumentation][Late] OpenShift alerting rules [apigroup:image.openshift.io] should link to a valid URL if the runbook_url annotation is defined [Suite:openshift/conformance/parallel]" +"[sig-instrumentation][Late] OpenShift alerting rules [apigroup:image.openshift.io] should link to an HTTP(S) location if the runbook_url annotation is defined [Suite:openshift/conformance/parallel]" +"[sig-instrumentation][sig-builds][Feature:Builds] Prometheus when installed on the cluster should start and expose a secured proxy and verify build metrics [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network-edge][Conformance][Area:Networking][Feature:Router] The HAProxy router should be able to connect to a service that is idled because a GET on the route will unidle it [Skipped:Disconnected] [Suite:openshift/conformance/parallel/minimal]" +"[sig-network-edge][Conformance][Area:Networking][Feature:Router] The HAProxy router should pass the gRPC interoperability tests [apigroup:route.openshift.io][apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel/minimal]" +"[sig-network-edge][Conformance][Area:Networking][Feature:Router][apigroup:route.openshift.io] The HAProxy router should pass the h2spec conformance tests [apigroup:authorization.openshift.io][apigroup:user.openshift.io][apigroup:security.openshift.io][apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel/minimal]" +"[sig-network-edge][Conformance][Area:Networking][Feature:Router][apigroup:route.openshift.io][apigroup:config.openshift.io] The HAProxy router should pass the http2 tests [apigroup:image.openshift.io][apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel/minimal]" +"[sig-network][Feature:EgressRouterCNI] should ensure ipv4 egressrouter cni resources are created [apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:EgressRouterCNI] when using openshift ovn-kubernetes should ensure ipv6 egressrouter cni resources are created [apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router] The HAProxy router should enable openshift-monitoring to pull metrics [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router] The HAProxy router should expose a health check on the metrics port [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router] The HAProxy router should expose prometheus metrics for a route [apigroup:route.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router] The HAProxy router should expose the profiling endpoints [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:image.openshift.io] The HAProxy router should serve a route that points to two services and respect weights [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:operator.openshift.io] The HAProxy router should respond with 503 to unrecognized hosts [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:operator.openshift.io] The HAProxy router should serve routes that were created from an ingress [apigroup:route.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:operator.openshift.io] The HAProxy router should set Forwarded headers appropriately [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router should override the route host for overridden domains with a custom value [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router should override the route host with a custom value [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router should run even if it has no access to update status [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router should serve the correct routes when running with the haproxy config manager [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router should serve the correct routes when scoped to a single namespace and label set [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:Router][apigroup:route.openshift.io][apigroup:operator.openshift.io] The HAProxy router should support reencrypt to services backed by a serving certificate automatically [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:tuning] pod should start with all sysctl on whitelist [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" +"[sig-network][Feature:tuning] pod sysctls should not affect node [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" ++ openshift-tests run openshift/conformance/parallel --file /tmp/tests --provider '{"type":"gce","region":"us-central1","multizone": true,"multimaster":true,"projectid":"XXXXXXXXXXXXXXXXXXXXXX"}' -o /logs/artifacts/e2e.log --junit-dir /logs/artifacts/junit +I0902 06:52:47.246735 925 factory.go:195] Registered Plugin "containerd" + I0902 06:52:47.273903 925 i18n.go:119] Couldn't find the LC_ALL, LC_MESSAGES or LANG environment variables, defaulting to en_US + I0902 06:52:47.273956 925 i18n.go:157] Setting language to default +time="2025-09-02T06:52:47Z" level=warning msg="ENABLE_STORAGE_GCE_PD_DRIVER is set, but is not supported" +openshift-tests 4.21.0-202509012026.p2.gf90f90a.assembly.stream.el9-f90f90a +time="2025-09-02T06:52:47Z" level=info msg="Using env RELEASE_IMAGE_LATEST for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\"" +time="2025-09-02T06:52:47Z" level=info msg="Detected /run/secrets/ci.openshift.io/cluster-profile/pull-secret; using cluster profile for image access" +time="2025-09-02T06:52:47Z" level=info msg="Cleaning up older cached data..." +time="2025-09-02T06:52:47Z" level=info msg="Cleaned up old cached data in 10.73µs" +time="2025-09-02T06:52:47Z" level=info msg="External binary cache is enabled" cache_dir=/tmp/home/.cache/openshift-tests +time="2025-09-02T06:52:47Z" level=info msg="Using path for binaries /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/k8s-tests-ext for tag hyperkube" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-monitoring-operator-tests-ext for tag cluster-monitoring-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/machine-api-tests-ext for tag machine-api-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/oauth-apiserver-tests-ext for tag oauth-apiserver" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-kube-apiserver-operator-tests-ext for tag cluster-kube-apiserver-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/openshift-apiserver-tests-ext for tag openshift-apiserver" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/machine-config-tests-ext for tag machine-config-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-openshift-apiserver-operator-tests-ext for tag cluster-openshift-apiserver-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/olmv1-tests-ext for tag olm-operator-controller" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/service-ca-operator-tests-ext for tag service-ca-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-kube-controller-manager-operator-tests-ext for tag cluster-kube-controller-manager-operator" +time="2025-09-02T06:52:47Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-storage-operator-tests-ext for tag cluster-storage-operator" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for openshift-tests" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for k8s-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for machine-api-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for cluster-monitoring-operator-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for cluster-monitoring-operator-tests-ext in 8.964018ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for oauth-apiserver-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for oauth-apiserver-tests-ext in 9.650528ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for cluster-kube-apiserver-operator-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for cluster-kube-apiserver-operator-tests-ext in 8.848828ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for openshift-apiserver-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for openshift-apiserver-tests-ext in 8.381249ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for machine-config-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for machine-config-tests-ext in 96.135379ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for cluster-openshift-apiserver-operator-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for cluster-openshift-apiserver-operator-tests-ext in 6.512169ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for olmv1-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for olmv1-tests-ext in 38.243171ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for service-ca-operator-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for service-ca-operator-tests-ext in 5.849259ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for cluster-kube-controller-manager-operator-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for cluster-kube-controller-manager-operator-tests-ext in 7.513149ms" +time="2025-09-02T06:52:47Z" level=info msg="Fetching info for cluster-storage-operator-tests-ext" +time="2025-09-02T06:52:47Z" level=info msg="Fetched info for cluster-storage-operator-tests-ext in 28.746174ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for machine-api-tests-ext in 473.71864ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for k8s-tests-ext in 527.139958ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for openshift-tests in 658.082481ms" + I0902 06:52:48.553915 925 test_setup.go:94] Extended test version 4.21.0-202509012026.p2.gf90f90a.assembly.stream.el9-f90f90a + I0902 06:52:48.553962 925 test_context.go:558] Tolerating taints "node-role.kubernetes.io/control-plane" when considering if nodes are ready + I0902 06:52:48.563121 925 framework.go:2317] microshift-version configmap not found +openshift-tests version: 4.21.0-202509012026.p2.gf90f90a.assembly.stream.el9-f90f90a +time="2025-09-02T06:52:48Z" level=info msg="Using env RELEASE_IMAGE_LATEST for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\"" +time="2025-09-02T06:52:48Z" level=info msg="Detected /run/secrets/ci.openshift.io/cluster-profile/pull-secret; using cluster profile for image access" +time="2025-09-02T06:52:48Z" level=info msg="Cleaning up older cached data..." +time="2025-09-02T06:52:48Z" level=info msg="Cleaned up old cached data in 9.79µs" +time="2025-09-02T06:52:48Z" level=info msg="External binary cache is enabled" cache_dir=/tmp/home/.cache/openshift-tests +time="2025-09-02T06:52:48Z" level=info msg="Using path for binaries /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-storage-operator-tests-ext for tag cluster-storage-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-kube-apiserver-operator-tests-ext for tag cluster-kube-apiserver-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/machine-api-tests-ext for tag machine-api-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/service-ca-operator-tests-ext for tag service-ca-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/oauth-apiserver-tests-ext for tag oauth-apiserver" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/k8s-tests-ext for tag hyperkube" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/machine-config-tests-ext for tag machine-config-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-openshift-apiserver-operator-tests-ext for tag cluster-openshift-apiserver-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/olmv1-tests-ext for tag olm-operator-controller" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-kube-controller-manager-operator-tests-ext for tag cluster-kube-controller-manager-operator" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/openshift-apiserver-tests-ext for tag openshift-apiserver" +time="2025-09-02T06:52:48Z" level=info msg="Using existing binary /tmp/home/.cache/openshift-tests/registry_build02_ci_openshift_org_ci-op-0k0qibps_release_sha256_41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213_a179b743eb03/cluster-monitoring-operator-tests-ext for tag cluster-monitoring-operator" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info from 13 extension binaries" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for cluster-storage-operator-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for cluster-kube-apiserver-operator-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for olmv1-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for oauth-apiserver-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for openshift-tests" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for machine-config-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for k8s-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for cluster-openshift-apiserver-operator-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for service-ca-operator-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for machine-api-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for cluster-kube-apiserver-operator-tests-ext in 8.088238ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for cluster-kube-controller-manager-operator-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for service-ca-operator-tests-ext in 8.726778ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for openshift-apiserver-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for oauth-apiserver-tests-ext in 10.072258ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetching info for cluster-monitoring-operator-tests-ext" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for cluster-openshift-apiserver-operator-tests-ext in 16.778777ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for cluster-kube-controller-manager-operator-tests-ext in 11.794638ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for cluster-monitoring-operator-tests-ext in 12.482777ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for openshift-apiserver-tests-ext in 16.652046ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for cluster-storage-operator-tests-ext in 32.537843ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for olmv1-tests-ext in 41.070761ms" +time="2025-09-02T06:52:48Z" level=info msg="Fetched info for machine-config-tests-ext in 120.175154ms" +time="2025-09-02T06:52:49Z" level=info msg="Fetched info for machine-api-tests-ext in 528.247298ms" +time="2025-09-02T06:52:49Z" level=info msg="Fetched info for k8s-tests-ext in 573.759768ms" +time="2025-09-02T06:52:49Z" level=info msg="Fetched info for openshift-tests in 661.328699ms" +time="2025-09-02T06:52:49Z" level=info msg="Discovered 13 extensions" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:cluster-kube-apiserve-operator found in cluster-kube-apiserver-operator:cluster-kube-apiserver-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:service-ca-operator found in service-ca-operator:service-ca-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:oauth-apiserver found in oauth-apiserver:oauth-apiserver-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:cluster-openshift-apiserver-operator found in cluster-openshift-apiserver-operator:cluster-openshift-apiserver-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:cluster-kube-controller-manager-operator found in cluster-kube-controller-manager-operator:cluster-kube-controller-manager-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:cluster-monitoring-operator found in cluster-monitoring-operator:cluster-monitoring-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:openshift-apiserver found in openshift-apiserver:openshift-apiserver-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:cluster-storage-operator found in cluster-storage-operator:cluster-storage-operator-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:olmv1 found in olm-operator-controller:olmv1-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:machine-config-operator found in machine-config-operator:machine-config-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:machine-api-operator found in machine-api-operator:machine-api-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:hyperkube found in hyperkube:k8s-tests-ext using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Extension openshift:payload:origin found in tests:openshift-tests using API version v1.1" +time="2025-09-02T06:52:49Z" level=info msg="Determined all potential environment flags" api-group="[project.openshift.io user.openshift.io imageregistry.operator.openshift.io ipam.cluster.x-k8s.io monitoring.coreos.com samples.operator.openshift.io controlplane.operator.openshift.io operator.openshift.io tuned.openshift.io networking.k8s.io rbac.authorization.k8s.io discovery.k8s.io route.openshift.io policy config.openshift.io autoscaling batch oauth.openshift.io populator.storage.k8s.io admissionregistration.k8s.io apiextensions.k8s.io k8s.cni.cncf.io network.operator.openshift.io security.internal.openshift.io storage.k8s.io scheduling.k8s.io metal3.io metrics.k8s.io authentication.k8s.io coordination.k8s.io cloud.network.openshift.io console.openshift.io ingress.operator.openshift.io apiregistration.k8s.io apps flowcontrol.apiserver.k8s.io build.openshift.io packages.operators.coreos.com gateway.networking.k8s.io helm.openshift.io machine.openshift.io security.openshift.io machineconfiguration.openshift.io operators.coreos.com apps.openshift.io image.openshift.io events.k8s.io autoscaling.openshift.io performance.openshift.io whereabouts.cni.cncf.io authorization.k8s.io template.openshift.io apiserver.openshift.io cloudcredential.openshift.io infrastructure.cluster.x-k8s.io monitoring.openshift.io olm.operatorframework.io certificates.k8s.io node.k8s.io k8s.ovn.org migration.k8s.io policy.networking.k8s.io snapshot.storage.k8s.io authorization.openshift.io quota.openshift.io]" architecture="[amd64]" external-connectivity="[Direct]" feature-gate="[ServiceAccountTokenNodeBinding BuildCSIVolumes KMSv1 VSphereMultiDisk HonorPVReclaimPolicy InOrderInformers NetworkLiveMigration ElasticIndexedJob ImageMaximumGCAge OpenAPIEnums SupplementalGroupsPolicy TopologyManagerPolicyOptions HighlyAvailableArbiter ProcMountType RouteExternalCertificate CSIMigrationPortworx RelaxedEnvironmentVariableValidation CPMSMachineNamePrefix SetEIPForNLBIngressController AggregatedDiscoveryRemoveBetaType AnonymousAuthConfigurableEndpoints AnyVolumeDataSource ConsistentListFromCache JobManagedBy NetworkDiagnosticsConfig OpenShiftPodSecurityAdmission PodIndexLabel AllowParsingUserUIDFromCertAuth BtreeWatchCache NodeInclusionPolicyInPodTopologySpread RecoverVolumeExpansionFailure VSphereMultiNetworks PodReadyToStartContainersCondition PinnedImages GracefulNodeShutdownBasedOnPodPriority JobSuccessPolicy PodLifecycleSleepActionAllowZero SeparateTaintEvictionController StatefulSetStartOrdinal StoragePerformantSecurityPolicy UserNamespacesSupport StructuredAuthenticationConfiguration TopologyManagerPolicyBetaOptions SchedulerPopFromBackoffQ ServiceAccountTokenNodeBindingValidation StreamingCollectionEncodingToProtobuf StructuredAuthorizationConfiguration WinOverlay UpgradeStatus DRAResourceClaimDeviceStatus MemoryManager ServiceAccountNodeAudienceRestriction SystemdWatchdog ManagedBootImagesAWS ExecProbeTimeout KubeletSeparateDiskGC LoggingBetaOptions MachineConfigNodes JobBackoffLimitPerIndex MatchLabelKeysInPodTopologySpread ReloadKubeletServerCertificateFile StorageNamespaceIndex ManagedBootImages ContainerCheckpoint ImageVolume ServiceAccountTokenJTI AdminNetworkPolicy CPUManagerPolicyBetaOptions SidecarContainers StrictCostEnforcementForWebhooks CustomResourceFieldSelectors GatewayAPI UserNamespacesPodSecurityStandards DevicePluginCDIDevices DisableNodeKubeProxyVersion NodeLogQuery PortForwardWebsockets UnauthenticatedHTTP2DOSMitigation AdditionalRoutingCapabilities ConsolePluginContentSecurityPolicy PodDisruptionConditions ContextualLogging PodSchedulingReadiness ResilientWatchCacheInitialization AuthorizeNodeWithSelectors AuthorizeWithSelectors CPUManagerPolicyOptions ServiceTrafficDistribution IngressControllerLBSubnetsAWS RelaxedDNSSearchValidation RetryGenerateName SchedulerAsyncPreemption NetworkSegmentation SigstoreImageVerification KubeletFineGrainedAuthz RotateKubeletServerCertificate SELinuxChangePolicy WinDSR GatewayAPIController AlibabaPlatform MetricsCollectionProfiles RouteAdvertisements APIServerTracing DeclarativeValidation InPlacePodVerticalScaling JobPodReplacementPolicy MatchLabelKeysInPodAffinity NewOLM CronJobsScheduledAnnotation DisableCPUQuotaWithExclusiveCPUs GracefulNodeShutdown NFTablesProxyMode ServiceAccountTokenPodNodeInfo KubeletCgroupDriverFromCRI OrderedNamespaceDeletion PodDeletionCost SizeMemoryBackedVolumes TopologyAwareHints APIServerIdentity KubeletTracing LoadBalancerIPMode LogarithmicScaleDown StreamingCollectionEncodingToJSON ComponentSLIs SELinuxMountReadWriteOncePod APIResponseCompression CRDValidationRatcheting RecursiveReadOnlyMounts RemoteRequestHeaderUID SchedulerQueueingHints AzureWorkloadIdentity MultiCIDRServiceAllocator PodLifecycleSleepAction StatefulSetAutoDeletePVC StorageVersionHash StrictCostEnforcementForVAP]" network="[OVNKubernetes]" network-stack="[ipv4]" optional-capability="[Build CSISnapshot CloudControllerManager CloudCredential Console DeploymentConfig ImageRegistry Ingress Insights MachineAPI NodeTuning OperatorLifecycleManager OperatorLifecycleManagerV1 Storage baremetal marketplace openshift-samples]" platform="[gce]" topology="[HighlyAvailable]" upgrade="[None]" version="[4.21.0-0.nightly-multi-2025-09-01-223641]" +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=k8s-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=k8s-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=machine-config-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=machine-config-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=k8s-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=olmv1-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=olmv1-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=machine-config-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=machine-api-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=machine-api-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=olmv1-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=machine-api-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=openshift-tests +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=openshift-tests +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=openshift-tests +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 9.811867ms" binary=service-ca-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 10.748087ms" binary=oauth-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 11.320027ms" binary=cluster-kube-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listing tests" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="OTE API version is: v1.1" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Adding the following applicable flags to the list command: --network=OVNKubernetes --network-stack=ipv4 --external-connectivity=Direct --platform=gce --api-group=project.openshift.io --api-group=user.openshift.io --api-group=imageregistry.operator.openshift.io --api-group=ipam.cluster.x-k8s.io --api-group=monitoring.coreos.com --api-group=samples.operator.openshift.io --api-group=controlplane.operator.openshift.io --api-group=operator.openshift.io --api-group=tuned.openshift.io --api-group=networking.k8s.io --api-group=rbac.authorization.k8s.io --api-group=discovery.k8s.io --api-group=route.openshift.io --api-group=policy --api-group=config.openshift.io --api-group=autoscaling --api-group=batch --api-group=oauth.openshift.io --api-group=populator.storage.k8s.io --api-group=admissionregistration.k8s.io --api-group=apiextensions.k8s.io --api-group=k8s.cni.cncf.io --api-group=network.operator.openshift.io --api-group=security.internal.openshift.io --api-group=storage.k8s.io --api-group=scheduling.k8s.io --api-group=metal3.io --api-group=metrics.k8s.io --api-group=authentication.k8s.io --api-group=coordination.k8s.io --api-group=cloud.network.openshift.io --api-group=console.openshift.io --api-group=ingress.operator.openshift.io --api-group=apiregistration.k8s.io --api-group=apps --api-group=flowcontrol.apiserver.k8s.io --api-group=build.openshift.io --api-group=packages.operators.coreos.com --api-group=gateway.networking.k8s.io --api-group=helm.openshift.io --api-group=machine.openshift.io --api-group=security.openshift.io --api-group=machineconfiguration.openshift.io --api-group=operators.coreos.com --api-group=apps.openshift.io --api-group=image.openshift.io --api-group=events.k8s.io --api-group=autoscaling.openshift.io --api-group=performance.openshift.io --api-group=whereabouts.cni.cncf.io --api-group=authorization.k8s.io --api-group=template.openshift.io --api-group=apiserver.openshift.io --api-group=cloudcredential.openshift.io --api-group=infrastructure.cluster.x-k8s.io --api-group=monitoring.openshift.io --api-group=olm.operatorframework.io --api-group=certificates.k8s.io --api-group=node.k8s.io --api-group=k8s.ovn.org --api-group=migration.k8s.io --api-group=policy.networking.k8s.io --api-group=snapshot.storage.k8s.io --api-group=authorization.openshift.io --api-group=quota.openshift.io --feature-gate=ServiceAccountTokenNodeBinding --feature-gate=BuildCSIVolumes --feature-gate=KMSv1 --feature-gate=VSphereMultiDisk --feature-gate=HonorPVReclaimPolicy --feature-gate=InOrderInformers --feature-gate=NetworkLiveMigration --feature-gate=ElasticIndexedJob --feature-gate=ImageMaximumGCAge --feature-gate=OpenAPIEnums --feature-gate=SupplementalGroupsPolicy --feature-gate=TopologyManagerPolicyOptions --feature-gate=HighlyAvailableArbiter --feature-gate=ProcMountType --feature-gate=RouteExternalCertificate --feature-gate=CSIMigrationPortworx --feature-gate=RelaxedEnvironmentVariableValidation --feature-gate=CPMSMachineNamePrefix --feature-gate=SetEIPForNLBIngressController --feature-gate=AggregatedDiscoveryRemoveBetaType --feature-gate=AnonymousAuthConfigurableEndpoints --feature-gate=AnyVolumeDataSource --feature-gate=ConsistentListFromCache --feature-gate=JobManagedBy --feature-gate=NetworkDiagnosticsConfig --feature-gate=OpenShiftPodSecurityAdmission --feature-gate=PodIndexLabel --feature-gate=AllowParsingUserUIDFromCertAuth --feature-gate=BtreeWatchCache --feature-gate=NodeInclusionPolicyInPodTopologySpread --feature-gate=RecoverVolumeExpansionFailure --feature-gate=VSphereMultiNetworks --feature-gate=PodReadyToStartContainersCondition --feature-gate=PinnedImages --feature-gate=GracefulNodeShutdownBasedOnPodPriority --feature-gate=JobSuccessPolicy --feature-gate=PodLifecycleSleepActionAllowZero --feature-gate=SeparateTaintEvictionController --feature-gate=StatefulSetStartOrdinal --feature-gate=StoragePerformantSecurityPolicy --feature-gate=UserNamespacesSupport --feature-gate=StructuredAuthenticationConfiguration --feature-gate=TopologyManagerPolicyBetaOptions --feature-gate=SchedulerPopFromBackoffQ --feature-gate=ServiceAccountTokenNodeBindingValidation --feature-gate=StreamingCollectionEncodingToProtobuf --feature-gate=StructuredAuthorizationConfiguration --feature-gate=WinOverlay --feature-gate=UpgradeStatus --feature-gate=DRAResourceClaimDeviceStatus --feature-gate=MemoryManager --feature-gate=ServiceAccountNodeAudienceRestriction --feature-gate=SystemdWatchdog --feature-gate=ManagedBootImagesAWS --feature-gate=ExecProbeTimeout --feature-gate=KubeletSeparateDiskGC --feature-gate=LoggingBetaOptions --feature-gate=MachineConfigNodes --feature-gate=JobBackoffLimitPerIndex --feature-gate=MatchLabelKeysInPodTopologySpread --feature-gate=ReloadKubeletServerCertificateFile --feature-gate=StorageNamespaceIndex --feature-gate=ManagedBootImages --feature-gate=ContainerCheckpoint --feature-gate=ImageVolume --feature-gate=ServiceAccountTokenJTI --feature-gate=AdminNetworkPolicy --feature-gate=CPUManagerPolicyBetaOptions --feature-gate=SidecarContainers --feature-gate=StrictCostEnforcementForWebhooks --feature-gate=CustomResourceFieldSelectors --feature-gate=GatewayAPI --feature-gate=UserNamespacesPodSecurityStandards --feature-gate=DevicePluginCDIDevices --feature-gate=DisableNodeKubeProxyVersion --feature-gate=NodeLogQuery --feature-gate=PortForwardWebsockets --feature-gate=UnauthenticatedHTTP2DOSMitigation --feature-gate=AdditionalRoutingCapabilities --feature-gate=ConsolePluginContentSecurityPolicy --feature-gate=PodDisruptionConditions --feature-gate=ContextualLogging --feature-gate=PodSchedulingReadiness --feature-gate=ResilientWatchCacheInitialization --feature-gate=AuthorizeNodeWithSelectors --feature-gate=AuthorizeWithSelectors --feature-gate=CPUManagerPolicyOptions --feature-gate=ServiceTrafficDistribution --feature-gate=IngressControllerLBSubnetsAWS --feature-gate=RelaxedDNSSearchValidation --feature-gate=RetryGenerateName --feature-gate=SchedulerAsyncPreemption --feature-gate=NetworkSegmentation --feature-gate=SigstoreImageVerification --feature-gate=KubeletFineGrainedAuthz --feature-gate=RotateKubeletServerCertificate --feature-gate=SELinuxChangePolicy --feature-gate=WinDSR --feature-gate=GatewayAPIController --feature-gate=AlibabaPlatform --feature-gate=MetricsCollectionProfiles --feature-gate=RouteAdvertisements --feature-gate=APIServerTracing --feature-gate=DeclarativeValidation --feature-gate=InPlacePodVerticalScaling --feature-gate=JobPodReplacementPolicy --feature-gate=MatchLabelKeysInPodAffinity --feature-gate=NewOLM --feature-gate=CronJobsScheduledAnnotation --feature-gate=DisableCPUQuotaWithExclusiveCPUs --feature-gate=GracefulNodeShutdown --feature-gate=NFTablesProxyMode --feature-gate=ServiceAccountTokenPodNodeInfo --feature-gate=KubeletCgroupDriverFromCRI --feature-gate=OrderedNamespaceDeletion --feature-gate=PodDeletionCost --feature-gate=SizeMemoryBackedVolumes --feature-gate=TopologyAwareHints --feature-gate=APIServerIdentity --feature-gate=KubeletTracing --feature-gate=LoadBalancerIPMode --feature-gate=LogarithmicScaleDown --feature-gate=StreamingCollectionEncodingToJSON --feature-gate=ComponentSLIs --feature-gate=SELinuxMountReadWriteOncePod --feature-gate=APIResponseCompression --feature-gate=CRDValidationRatcheting --feature-gate=RecursiveReadOnlyMounts --feature-gate=RemoteRequestHeaderUID --feature-gate=SchedulerQueueingHints --feature-gate=AzureWorkloadIdentity --feature-gate=MultiCIDRServiceAllocator --feature-gate=PodLifecycleSleepAction --feature-gate=StatefulSetAutoDeletePVC --feature-gate=StorageVersionHash --feature-gate=StrictCostEnforcementForVAP --upgrade=None --architecture=amd64 --optional-capability=Build --optional-capability=CSISnapshot --optional-capability=CloudControllerManager --optional-capability=CloudCredential --optional-capability=Console --optional-capability=DeploymentConfig --optional-capability=ImageRegistry --optional-capability=Ingress --optional-capability=Insights --optional-capability=MachineAPI --optional-capability=NodeTuning --optional-capability=OperatorLifecycleManager --optional-capability=OperatorLifecycleManagerV1 --optional-capability=Storage --optional-capability=baremetal --optional-capability=marketplace --optional-capability=openshift-samples --topology=HighlyAvailable --version=4.21.0-0.nightly-multi-2025-09-01-223641" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 11.622897ms" binary=cluster-openshift-apiserver-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 9.280898ms" binary=cluster-monitoring-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 12.458378ms" binary=cluster-kube-controller-manager-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 1 tests in 14.885767ms" binary=openshift-apiserver-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 28 tests in 35.317713ms" binary=olmv1-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 6 tests in 36.244412ms" binary=cluster-storage-operator-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 5 tests in 100.682949ms" binary=machine-config-tests-ext +time="2025-09-02T06:52:49Z" level=info msg="Listed 0 tests in 470.46076ms" binary=machine-api-tests-ext +time="2025-09-02T06:52:50Z" level=info msg="Listed 1040 tests in 653.630472ms" binary=openshift-tests +time="2025-09-02T06:52:50Z" level=info msg="Listed 5923 tests in 780.287184ms" binary=k8s-tests-ext +time="2025-09-02T06:52:50Z" level=info msg="Discovered 7009 total tests" +time="2025-09-02T06:52:50Z" level=info msg="Generated skips for cluster state" skips="[[Skipped:gce] [Skipped:Network/OVNKubernetes] [Feature:Networking-IPv6] [Feature:IPv6DualStack [Feature:SCTPConnectivity]]" +time="2025-09-02T06:52:50Z" level=info msg="Applying filter: suite-qualifiers" before=7009 component=test-filter filter=suite-qualifiers +time="2025-09-02T06:52:57Z" level=info msg="Filter suite-qualifiers completed - removed 3191 tests" after=3818 before=7009 component=test-filter filter=suite-qualifiers removed=3191 +time="2025-09-02T06:52:57Z" level=info msg="Applying filter: kube-rebase-tests" before=3818 component=test-filter filter=kube-rebase-tests +time="2025-09-02T06:52:57Z" level=info msg="Filter kube-rebase-tests completed - removed 0 tests" after=3818 before=3818 component=test-filter filter=kube-rebase-tests removed=0 +time="2025-09-02T06:52:57Z" level=info msg="Applying filter: disabled-tests" before=3818 component=test-filter filter=disabled-tests +time="2025-09-02T06:52:57Z" level=info msg="Filter disabled-tests completed - removed 0 tests" after=3818 before=3818 component=test-filter filter=disabled-tests removed=0 +time="2025-09-02T06:52:57Z" level=info msg="Applying filter: match-function" before=3818 component=test-filter filter=match-function +time="2025-09-02T06:52:57Z" level=info msg="Filter match-function completed - removed 297 tests" after=3521 before=3818 component=test-filter filter=match-function removed=297 +time="2025-09-02T06:52:57Z" level=info msg="Applying filter: cluster-state" before=3521 component=test-filter filter=cluster-state +time="2025-09-02T06:52:57Z" level=info msg="Filter cluster-state completed - removed 0 tests" after=3521 before=3521 component=test-filter filter=cluster-state removed=0 +time="2025-09-02T06:52:57Z" level=info msg="Filter chain completed with 3521 tests" component=test-filter final_count=3521 +time="2025-09-02T06:52:57Z" level=info msg="Waiting for all cluster operators to become stable" + I0902 06:52:57.771061 925 framework.go:2317] microshift-version configmap not found +time="2025-09-02T06:55:57Z" level=info msg=" Preparing lease-checker for Test Framework" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing pod-lifecycle for Node / Kubelet" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing tracked-resources-serializer for Test Framework" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing node-state-analyzer for Node / Kubelet" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing metrics-api-availability for Monitoring" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing known-image-checker for Test Framework" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing legacy-authentication-invariants for apiserver-auth" +time="2025-09-02T06:55:57Z" level=info msg=" Preparing pod-network-avalibility for Network / ovn-kubernetes" +time="2025-09-02T06:55:57Z" level=info msg="Using env RELEASE_IMAGE_LATEST for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\"" +time="2025-09-02T06:55:57Z" level=info msg="payload image reported by CV: registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\n" +time="2025-09-02T06:55:57Z" level=info msg="Detected /run/secrets/ci.openshift.io/cluster-profile/pull-secret; using cluster profile for image access" +time="2025-09-02T06:55:57Z" level=info msg="Run image extract for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\" and src \"/release-manifests/image-references\"" +time="2025-09-02T06:56:04Z" level=info msg="Completed image extract for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\" in 6.46709679s" +openshift-tests image pull spec is quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:f3bf24164989ef4cce01719eea364225e7af136e83b87d293f071548fc58e0cb + I0902 06:56:05.382259 925 monitortest.go:129] Starting deployment: pod-network-to-pod-network-disruption-poller + I0902 06:56:05.404414 925 monitortest.go:136] Starting deployment: pod-network-to-host-network-disruption-poller + I0902 06:56:05.430925 925 monitortest.go:143] Starting deployment: host-network-to-pod-network-disruption-poller + I0902 06:56:05.446098 925 monitortest.go:150] Starting deployment: host-network-to-host-network-disruption-poller + I0902 06:56:05.461496 925 monitortest.go:157] Starting deployment: pod-network-disruption-target + I0902 06:56:05.601744 925 monitortest.go:170] Starting deployment: host-network-disruption-target + I0902 06:56:44.826976 925 monitortest.go:188] Starting deployment: pod-network-to-service-disruption-poller + I0902 06:57:14.846910 925 monitortest.go:188] Starting deployment: host-network-to-service-disruption-poller +time="2025-09-02T06:57:14Z" level=info msg=" Preparing kubelet-log-collector for Node / Kubelet" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing initial-and-final-operator-log-scraper for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-etcd-invariants for etcd" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing node-lifecycle for Node / Kubelet" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing monitoring-statefulsets-recreation for Monitoring" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing azure-metrics-collector for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing required-scc-annotation-checker for Cluster Version Operator" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing watch-namespaces for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing high-cpu-metric-collector for Node / Kubelet" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing on-prem-haproxy for Networking / On-Prem Host Networking" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing timeline-serializer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing cluster-info-serializer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing oc-adm-upgrade-status for oc / update" + I0902 06:57:14.888882 925 framework.go:2317] microshift-version configmap not found +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-cvo-invariants for Cluster Version Operator" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing metrics-endpoints-down for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing api-unreachable-from-client-metrics for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing faulty-load-balancer for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing clusteroperator-collector for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing machine-lifecycle for Cluster-Lifecycle / machine-api" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing high-cpu-test-analyzer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing pathological-event-analyzer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-networking-invariants for Networking / cluster-network-operator" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-kube-apiserver-invariants for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing additional-events-collector for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing e2e-test-analyzer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-test-framework-invariants for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing image-registry-availability for Image Registry" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing apiserver-incluster-availability for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-storage-invariants for Storage" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing graceful-shutdown-analyzer for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing external-service-availability for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing external-azure-cloud-service-availability for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing kubelet-container-restarts for Node / Kubelet" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing audit-log-analyzer for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing on-prem-keepalived for Networking / On-Prem Loadbalancer" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing external-gcp-cloud-service-availability for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing interval-serializer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing termination-message-policy for Cluster Version Operator" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing etcd-log-analyzer for etcd" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing apiserver-external-availability for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing ingress-availability for Networking / router" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing alert-summary-serializer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing disruption-summary-serializer for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing apiserver-disruption-invariant for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing generation-analyzer for kube-apiserver" +time="2025-09-02T06:57:14Z" level=info msg="Starting PodsLogStreamer" component=PodsStreamer +time="2025-09-02T06:57:14Z" level=info msg=" Preparing legacy-node-invariants for Node / Kubelet" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing operator-state-analyzer for Cluster Version Operator" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing external-aws-cloud-service-availability for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing event-collector for Test Framework" +time="2025-09-02T06:57:14Z" level=info msg=" Preparing service-type-load-balancer-availability for Networking / router" + I0902 06:57:14.960470 925 framework.go:2317] microshift-version configmap not found +creating a TCP service service-test with type=LoadBalancer in namespace e2e-service-lb-test-bbv8s + I0902 06:57:15.144373 925 jig.go:601] Waiting up to 15m0s for service "service-test" to have a LoadBalancer +creating RC to be part of service service-test + I0902 06:57:55.178575 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:0, Replicas:0, UpdatedReplicas:0, ReadyReplicas:0, AvailableReplicas:0, UnavailableReplicas:0, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition(nil), CollisionCount:(*int32)(nil)} + I0902 06:57:57.216810 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:57:59.190581 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:01.190100 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:03.190623 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:05.191935 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:07.190542 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:09.193344 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:11.189877 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:13.191183 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:15.193836 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:17.191032 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:19.189777 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:21.191829 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:23.193139 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:25.191076 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:27.190485 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} + I0902 06:58:29.191003 925 deployment.go:104] deployment status: v1.DeploymentStatus{ObservedGeneration:1, Replicas:2, UpdatedReplicas:2, ReadyReplicas:2, AvailableReplicas:0, UnavailableReplicas:2, TerminatingReplicas:(*int32)(nil), Conditions:[]v1.DeploymentCondition{v1.DeploymentCondition{Type:"Available", Status:"False", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"MinimumReplicasUnavailable", Message:"Deployment does not have minimum availability."}, v1.DeploymentCondition{Type:"Progressing", Status:"True", LastUpdateTime:time.Date(2025, time.September, 2, 6, 57, 57, 0, time.Local), LastTransitionTime:time.Date(2025, time.September, 2, 6, 57, 55, 0, time.Local), Reason:"ReplicaSetUpdated", Message:"ReplicaSet \"service-test-74fd545558\" is progressing."}}, CollisionCount:(*int32)(nil)} +creating a PodDisruptionBudget to cover the ReplicationController +hitting pods through the service's LoadBalancer +time="2025-09-02T06:59:00Z" level=info msg=" Preparing staicpod-install-monitor for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting interval-serializer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting required-scc-annotation-checker for Cluster Version Operator" +time="2025-09-02T06:59:00Z" level=info msg=" Starting on-prem-haproxy for Networking / On-Prem Host Networking" +time="2025-09-02T06:59:00Z" level=info msg=" Starting staicpod-install-monitor for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting disruption-summary-serializer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-node-invariants for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting watch-namespaces for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting operator-state-analyzer for Cluster Version Operator" +time="2025-09-02T06:59:00Z" level=info msg=" Starting alert-summary-serializer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting event-collector for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-kube-apiserver-invariants for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-storage-invariants for Storage" +time="2025-09-02T06:59:00Z" level=info msg=" Starting timeline-serializer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting faulty-load-balancer for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting metrics-endpoints-down for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting e2e-test-analyzer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting oc-adm-upgrade-status for oc / update" +time="2025-09-02T06:59:00Z" level=info msg=" Starting high-cpu-test-analyzer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting clusteroperator-collector for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting image-registry-availability for Image Registry" +time="2025-09-02T06:59:00Z" level=info msg=" Starting apiserver-incluster-availability for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting tracked-resources-serializer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-networking-invariants for Networking / cluster-network-operator" +time="2025-09-02T06:59:00Z" level=info msg=" Starting external-gcp-cloud-service-availability for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting audit-log-analyzer for kube-apiserver" + I0902 06:59:00.238747 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +time="2025-09-02T06:59:00Z" level=info msg=" Starting apiserver-external-availability for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting external-aws-cloud-service-availability for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting apiserver-disruption-invariant for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-test-framework-invariants for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-cvo-invariants for Cluster Version Operator" +time="2025-09-02T06:59:00Z" level=info msg=" Starting cluster-info-serializer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting external-service-availability for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting additional-events-collector for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting on-prem-keepalived for Networking / On-Prem Loadbalancer" +time="2025-09-02T06:59:00Z" level=info msg=" Starting generation-analyzer for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting kubelet-log-collector for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting initial-and-final-operator-log-scraper for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting termination-message-policy for Cluster Version Operator" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-etcd-invariants for etcd" +time="2025-09-02T06:59:00Z" level=info msg=" Starting legacy-authentication-invariants for apiserver-auth" +time="2025-09-02T06:59:00Z" level=info msg=" Starting monitoring-statefulsets-recreation for Monitoring" +time="2025-09-02T06:59:00Z" level=info msg=" Starting lease-checker for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting metrics-api-availability for Monitoring" +time="2025-09-02T06:59:00Z" level=info msg=" Starting azure-metrics-collector for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting node-lifecycle for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting graceful-shutdown-analyzer for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg="starting external API monitors" func=StartCollection monitorTest=apiserver-external-availability + I0902 06:59:00.238431 925 monitortest.go:58] monitor[faulty-load-balancer]: initialized +time="2025-09-02T06:59:00Z" level=info msg=" Starting ingress-availability for Networking / router" +time="2025-09-02T06:59:00Z" level=info msg=" Starting known-image-checker for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting high-cpu-metric-collector for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting api-unreachable-from-client-metrics for kube-apiserver" +time="2025-09-02T06:59:00Z" level=info msg=" Starting node-state-analyzer for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting pod-lifecycle for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting external-azure-cloud-service-availability for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting pathological-event-analyzer for Test Framework" +time="2025-09-02T06:59:00Z" level=info msg=" Starting service-type-load-balancer-availability for Networking / router" +time="2025-09-02T06:59:00Z" level=info msg=" Starting kubelet-container-restarts for Node / Kubelet" +time="2025-09-02T06:59:00Z" level=info msg=" Starting pod-network-avalibility for Network / ovn-kubernetes" +time="2025-09-02T06:59:00Z" level=info msg=" Starting etcd-log-analyzer for etcd" +time="2025-09-02T06:59:00Z" level=info msg=" Starting machine-lifecycle for Cluster-Lifecycle / machine-api" +Starting SimultaneousPodIPController + I0902 06:59:00.240988 925 shared_informer.go:350] "Waiting for caches to sync" controller="SimultaneousPodIPController" + I0902 06:59:00.251131 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.253535 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.253843 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.256039 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.256266 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.256304 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.256319 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.258876 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.259055 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.260358 925 framework.go:2317] microshift-version configmap not found +time="2025-09-02T06:59:00Z" level=info msg="Using env RELEASE_IMAGE_LATEST for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\"" +time="2025-09-02T06:59:00Z" level=info msg="payload image pull spec is registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213" func=StartCollection monitorTest=apiserver-incluster-availability namespace= +time="2025-09-02T06:59:00Z" level=info msg="Detected /run/secrets/ci.openshift.io/cluster-profile/pull-secret; using cluster profile for image access" +time="2025-09-02T06:59:00Z" level=info msg="Run image extract for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\" and src \"/release-manifests/image-references\"" + I0902 06:59:00.271838 925 framework.go:2317] microshift-version configmap not found + I0902 06:59:00.384952 925 monitortest.go:136] monitor[api-unreachable-from-client-metrics]: monitor initialized, service-network-ip: 172.30.0.1 + I0902 06:59:00.441197 925 shared_informer.go:357] "Caches are synced" controller="SimultaneousPodIPController" +time="2025-09-02T06:59:05Z" level=info msg="Completed image extract for release image \"registry.build02.ci.openshift.org/ci-op-0k0qibps/release@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213\" in 5.059394373s" +time="2025-09-02T06:59:05Z" level=info msg="openshift-tests image pull spec is quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:f3bf24164989ef4cce01719eea364225e7af136e83b87d293f071548fc58e0cb" func=StartCollection monitorTest=apiserver-incluster-availability namespace= + I0902 06:59:05.336598 925 framework.go:2317] microshift-version configmap not found +time="2025-09-02T06:59:05Z" level=info msg="starting monitoring deployments" func=StartCollection monitorTest=apiserver-incluster-availability namespace= +time="2025-09-02T06:59:05Z" level=info msg="created namespace e2e-disruption-monitor-mp425" func=createNamespace monitorTest=apiserver-incluster-availability namespace= +time="2025-09-02T06:59:12Z" level=info msg="monitoring deployments started" func=StartCollection monitorTest=apiserver-incluster-availability namespace= +All monitor tests started. +time="2025-09-02T06:59:31Z" level=info msg="Found 28 early tests" +time="2025-09-02T06:59:31Z" level=info msg="Found 18 late tests" +time="2025-09-02T06:59:31Z" level=info msg="Determining sharding of 3475 tests" shardCount=0 shardID=0 sharder=hash +time="2025-09-02T06:59:31Z" level=warning msg="Sharding disabled, returning all tests" +time="2025-09-02T06:59:31Z" level=info msg="Found 476 openshift tests" +time="2025-09-02T06:59:31Z" level=info msg="Found 767 kube tests" +time="2025-09-02T06:59:31Z" level=info msg="Found 2201 storage tests" +time="2025-09-02T06:59:31Z" level=info msg="Found 27 builds tests" +time="2025-09-02T06:59:31Z" level=info msg="Found 4 must-gather tests" +started: 0/1/28 "[sig-ci] [Early] prow job name should match network type [Suite:openshift/conformance/parallel]" + +started: 0/2/28 "[sig-ci] [Early] prow job name should match security mode [Suite:openshift/conformance/parallel]" + +started: 0/3/28 "[sig-node] Managed cluster record the number of nodes at the beginning of the tests [Early] [Suite:openshift/conformance/parallel]" + +started: 0/4/28 "[sig-scheduling][Early] The openshift-monitoring thanos-querier pods [apigroup:monitoring.coreos.com] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/5/28 "[sig-etcd] etcd cluster has the same number of master nodes and voting members from the endpoints configmap [Early][apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/6/28 "[sig-ci] [Early] prow job name should match feature set [Suite:openshift/conformance/parallel]" + +started: 0/7/28 "[sig-arch][Early] APIs for openshift.io must have stable versions [Suite:openshift/conformance/parallel]" + +started: 0/8/28 "[sig-scheduling][Early] The openshift-authentication pods [apigroup:oauth.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/9/28 "[sig-scheduling][Early] The openshift-etcd pods [apigroup:operator.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/10/28 "[sig-cluster-lifecycle][Feature:Machines][Early] Managed cluster should have same number of Machines and Nodes [apigroup:machine.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/11/28 "[sig-kubevirt] migration when running openshift cluster on KubeVirt virtual machines and live migrate hosted control plane workers [Early] should maintain node readiness [Suite:openshift/conformance/parallel]" + +started: 0/12/28 "[sig-scheduling][Early] The HAProxy router pods [apigroup:route.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/13/28 "[sig-scheduling][Early] The openshift-console downloads pods [apigroup:console.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/14/28 "[sig-cluster-lifecycle][Feature:Machines] Managed cluster should [sig-scheduling][Early] control plane machine set operator should not cause an early rollout [Suite:openshift/conformance/parallel]" + +started: 0/15/28 "[sig-scheduling][Early] The openshift-apiserver pods [apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/16/28 "[sig-arch][Early] Operators low level operators should have at least the conditions we had in 4.17 [Suite:openshift/conformance/parallel]" + +started: 0/17/28 "[sig-cluster-lifecycle][Feature:Machines] Managed cluster should [sig-scheduling][Early] control plane machine set operator should not have any events [Suite:openshift/conformance/parallel]" + +started: 0/18/28 "[sig-auth][Feature:SCC][Early] should not have pod creation failures during install [Suite:openshift/conformance/parallel]" + +started: 0/19/28 "[sig-ci] [Early] prow job name should match cluster version [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/20/28 "[sig-scheduling][Early] The openshift-console console pods [apigroup:console.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/21/28 "[sig-arch][Early] CRDs for openshift.io should have subresource.status [Suite:openshift/conformance/parallel]" + +started: 0/22/28 "[sig-arch][Early] Managed cluster should [apigroup:config.openshift.io] start all core operators [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/23/28 "[sig-scheduling][Early] The openshift-monitoring prometheus-adapter pods [apigroup:monitoring.coreos.com] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/24/28 "[sig-scheduling][Early] The openshift-oauth-apiserver pods [apigroup:oauth.openshift.io][apigroup:user.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/25/28 "[sig-etcd] etcd record the start revision of the etcd-operator [Early] [Suite:openshift/conformance/parallel]" + +started: 0/26/28 "[sig-scheduling][Early] The openshift-operator-lifecycle-manager pods [apigroup:packages.operators.coreos.com] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/27/28 "[sig-scheduling][Early] The openshift-image-registry pods [apigroup:imageregistry.operator.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/28/28 "[sig-ci] [Early] prow job name should match platform type [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T06:59:34 "[sig-etcd] etcd cluster has the same number of master nodes and voting members from the endpoints configmap [Early][apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.2s) 2025-09-02T06:59:34 "[sig-ci] [Early] prow job name should match security mode [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T06:59:34 "[sig-cluster-lifecycle][Feature:Machines] Managed cluster should [sig-scheduling][Early] control plane machine set operator should not cause an early rollout [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T06:59:34 "[sig-arch][Early] Operators low level operators should have at least the conditions we had in 4.17 [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T06:59:35 "[sig-etcd] etcd record the start revision of the etcd-operator [Early] [Suite:openshift/conformance/parallel]" + +passed: (1.2s) 2025-09-02T06:59:35 "[sig-ci] [Early] prow job name should match network type [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T06:59:35 "[sig-cluster-lifecycle][Feature:Machines][Early] Managed cluster should have same number of Machines and Nodes [apigroup:machine.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T06:59:35 "[sig-cluster-lifecycle][Feature:Machines] Managed cluster should [sig-scheduling][Early] control plane machine set operator should not have any events [Suite:openshift/conformance/parallel]" + +passed: (400ms) 2025-09-02T06:59:35 "[sig-auth][Feature:SCC][Early] should not have pod creation failures during install [Suite:openshift/conformance/parallel]" + +passed: (1.4s) 2025-09-02T06:59:35 "[sig-scheduling][Early] The openshift-oauth-apiserver pods [apigroup:oauth.openshift.io][apigroup:user.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T06:59:35 "[sig-scheduling][Early] The openshift-monitoring prometheus-adapter pods [apigroup:monitoring.coreos.com] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T06:59:35 "[sig-arch][Early] Managed cluster should [apigroup:config.openshift.io] start all core operators [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T06:59:36 "[sig-scheduling][Early] The openshift-apiserver pods [apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io][apigroup:quota.openshift.io][apigroup:route.openshift.io][apigroup:security.openshift.io][apigroup:template.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.4s) 2025-09-02T06:59:36 "[sig-scheduling][Early] The openshift-monitoring thanos-querier pods [apigroup:monitoring.coreos.com] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T06:59:36 "[sig-scheduling][Early] The openshift-etcd pods [apigroup:operator.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.4s) 2025-09-02T06:59:36 "[sig-ci] [Early] prow job name should match feature set [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/ci/job_names.go:139]: This is only expected to work on periodics, skipping + +skipped: (1.5s) 2025-09-02T06:59:36 "[sig-ci] [Early] prow job name should match cluster version [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T06:59:37 "[sig-scheduling][Early] The openshift-console console pods [apigroup:console.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T06:59:37 "[sig-arch][Early] CRDs for openshift.io should have subresource.status [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T06:59:37 "[sig-scheduling][Early] The openshift-console downloads pods [apigroup:console.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T06:59:37 "[sig-scheduling][Early] The HAProxy router pods [apigroup:route.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (1.6s) 2025-09-02T06:59:37 "[sig-kubevirt] migration when running openshift cluster on KubeVirt virtual machines and live migrate hosted control plane workers [Early] should maintain node readiness [Suite:openshift/conformance/parallel]" + +passed: (1.8s) 2025-09-02T06:59:37 "[sig-arch][Early] APIs for openshift.io must have stable versions [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T06:59:37 "[sig-scheduling][Early] The openshift-operator-lifecycle-manager pods [apigroup:packages.operators.coreos.com] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T06:59:37 "[sig-node] Managed cluster record the number of nodes at the beginning of the tests [Early] [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T06:59:37 "[sig-scheduling][Early] The openshift-authentication pods [apigroup:oauth.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T06:59:37 "[sig-ci] [Early] prow job name should match platform type [Suite:openshift/conformance/parallel]" + +passed: (2.2s) 2025-09-02T06:59:37 "[sig-scheduling][Early] The openshift-image-registry pods [apigroup:imageregistry.operator.openshift.io] should be scheduled on different nodes [Skipped:SingleReplicaTopology] [Suite:openshift/conformance/parallel]" + +started: 0/1/767 "[sig-node] Security Context When creating a container with runAsNonRoot should run with an image specified user ID [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2/767 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should not launch unsafe, but not explicitly enabled sysctls on the node [MinimumKubeletVersion:1.21] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/3/767 "[sig-cli] Kubectl client Simple pod should support inline execution and attach [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/4/767 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/json,application/vnd.kubernetes.protobuf\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/5/767 "[sig-node] Security Context When creating a pod with privileged should run the container as privileged when true [LinuxOnly] [Feature:HostAccess] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/6/767 "[sig-node] Secrets should fail to create secret due to empty secret key [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/7/767 "[sig-auth] ServiceAccounts should guarantee kube-root-ca.crt exist in any namespace [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/8/767 "[sig-cli] Kubectl client Update Demo should create and stop a replication controller [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/9/767 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Decreasing .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/10/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should include webhook resources in discovery documents [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/11/767 "[sig-cli] Kubectl client Kubectl describe should check if kubectl describe prints relevant information for cronjob [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/12/767 "[sig-node] Probing container should override timeoutGracePeriodSeconds when StartupProbe field is set [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/13/767 "[sig-windows] Hybrid cluster network for all supported CNIs should have stable networking for Linux and Windows pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/14/767 "[sig-windows] [Feature:Windows] Kubelet-Stats Kubelet stats collection for Windows nodes when running 3 pods should return within 10 seconds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/15/767 "[sig-network] Services should provide secure master service [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/16/767 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Removing .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/17/767 "[sig-network] Proxy version v1 A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/18/767 "[sig-node] Probing container should be restarted with an exec liveness probe with timeout [MinimumKubeletVersion:1.20] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/19/767 "[sig-node] Probing container should not be ready with an exec readiness probe timeout [MinimumKubeletVersion:1.20] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/20/767 "[sig-node] Probing container should be restarted with a failing exec liveness probe that took longer than the timeout [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/21/767 "[sig-cli] Kubectl client Kubectl replace should update a single-container pod's image [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/22/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a /healthz http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/23/767 "[sig-auth] SelfSubjectReview should support SelfSubjectReview API operations [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/24/767 "[sig-network] Networking Granular Checks: Services should function for node-Service: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/25/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a tcp:8080 liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/26/767 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should support sysctls with slashes as separator [MinimumKubeletVersion:1.23] [Environment:NotInUserNS] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/27/767 "[sig-node] Pods Extended Delete Grace Period should be submitted and removed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/28/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should unconditionally reject operations on fail closed webhook [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/29/767 "[sig-node] Kubelet when scheduling a busybox command that always fails in a pod should have an terminated reason [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/30/767 "[sig-network] Netpol NetworkPolicy between server and client should support a 'default-deny-ingress' policy [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T06:59:40 "[sig-windows] Hybrid cluster network for all supported CNIs should have stable networking for Linux and Windows pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/31/767 "[sig-auth] [Feature:NodeAuthorizer] Getting a non-existent configmap should exit with the Forbidden error, not a NotFound error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/auth/selfsubjectreviews.go:119]: No authentication/v1alpha1 available + +skipped: (500ms) 2025-09-02T06:59:40 "[sig-auth] SelfSubjectReview should support SelfSubjectReview API operations [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/32/767 "[sig-cli] Kubectl rollout undo undo should rollback and update deployment env [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T06:59:41 "[sig-windows] [Feature:Windows] Kubelet-Stats Kubelet stats collection for Windows nodes when running 3 pods should return within 10 seconds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/33/767 "[sig-cli] Kubectl client kubectl subresource flag should not be used in a bulk GET [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T06:59:41 "[sig-node] Secrets should fail to create secret due to empty secret key [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/34/767 "[sig-network] Services should serve endpoints on same port and different protocol for internal traffic on Type LoadBalancer [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T06:59:41 "[sig-network] Services should provide secure master service [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/35/767 "[sig-node] [Feature:KubeletFineGrainedAuthz] when calling kubelet API check /healthz enpoint is accessible via nodes/proxy RBAC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1s) 2025-09-02T06:59:42 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/json,application/vnd.kubernetes.protobuf\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/36/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - remove memory limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (800ms) 2025-09-02T06:59:42 "[sig-auth] [Feature:NodeAuthorizer] Getting a non-existent configmap should exit with the Forbidden error, not a NotFound error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/37/767 "[sig-network] Services should release NodePorts on delete [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.8s) 2025-09-02T06:59:42 "[sig-auth] ServiceAccounts should guarantee kube-root-ca.crt exist in any namespace [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/38/767 "[sig-api-machinery] ServerSideApply should work for subresources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T06:59:43 "[sig-cli] Kubectl client kubectl subresource flag should not be used in a bulk GET [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/39/767 "[sig-network] Services should fallback to terminating endpoints when there are no ready endpoints with internalTrafficPolicy=Cluster [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.2s) 2025-09-02T06:59:43 "[sig-cli] Kubectl client Kubectl describe should check if kubectl describe prints relevant information for cronjob [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/40/767 "[sig-api-machinery] FieldValidation should detect duplicates in a CR when preserving unknown fields [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3s) 2025-09-02T06:59:43 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should not launch unsafe, but not explicitly enabled sysctls on the node [MinimumKubeletVersion:1.21] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/41/767 "[sig-api-machinery] Discovery should accurately determine present and missing resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T06:59:44 "[sig-network] Proxy version v1 A set of valid responses are returned for both pod and service ProxyWithPath [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/42/767 "[sig-network] KubeProxy should update metric for tracking accepted packets destined for localhost nodeports [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (800ms) 2025-09-02T06:59:44 "[sig-api-machinery] ServerSideApply should work for subresources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/43/767 "[sig-node] Events should be sent by kubelets and the scheduler about pods scheduling and running [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.3s) 2025-09-02T06:59:46 "[sig-api-machinery] Discovery should accurately determine present and missing resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/44/767 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs after adopting pod (WhenScaled) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.2s) 2025-09-02T06:59:46 "[sig-node] [Feature:KubeletFineGrainedAuthz] when calling kubelet API check /healthz enpoint is accessible via nodes/proxy RBAC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/45/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, three containers - no change for c1, increase c2 resources, decrease c3 (net decrease for pod) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T06:59:47 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should unconditionally reject operations on fail closed webhook [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/46/767 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with best effort scope using scope-selectors. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.8s) 2025-09-02T06:59:48 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - remove memory limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/47/767 "[sig-node] Probing container should mark readiness on pods to false while pod is in progress of terminating when a pod has a readiness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T06:59:48 "[sig-api-machinery] FieldValidation should detect duplicates in a CR when preserving unknown fields [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/48/767 "[sig-api-machinery] API priority and fairness should support FlowSchema API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/network/kube_proxy.go:288]: kube-proxy is not running or could not determine kube-proxy mode (error running /usr/bin/kubectl --server=https://api.ci-op-0k0qibps-871dd.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:6443 --kubeconfig=/tmp/kubeconfig-182615149 --namespace=e2e-kube-proxy-8969 exec host-exec-pod -- /bin/sh -x -c curl --silent 127.0.0.1:10249/proxyMode: +Command stdout: + +stderr: ++ curl --silent 127.0.0.1:10249/proxyMode +command terminated with exit code 7 + +error: +exit status 7) + +skipped: (2.8s) 2025-09-02T06:59:48 "[sig-network] KubeProxy should update metric for tracking accepted packets destined for localhost nodeports [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/49/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted by liveness probe because startup probe delays it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.5s) 2025-09-02T06:59:48 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should include webhook resources in discovery documents [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/50/767 "[sig-apps] Deployment RecreateDeployment should delete old pods and create new ones [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.4s) 2025-09-02T06:59:49 "[sig-network] Services should release NodePorts on delete [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/51/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST NOT fail to update a resource due to CRD Validation Rule errors on unchanged correlatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.7s) 2025-09-02T06:59:49 "[sig-node] Kubelet when scheduling a busybox command that always fails in a pod should have an terminated reason [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/52/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to create and update mutating webhook configurations with match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (9.8s) 2025-09-02T06:59:49 "[sig-node] Security Context When creating a pod with privileged should run the container as privileged when true [LinuxOnly] [Feature:HostAccess] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/53/767 "[sig-cli] Kubectl client Simple pod should contain last line of the log [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.9s) 2025-09-02T06:59:49 "[sig-node] Security Context When creating a container with runAsNonRoot should run with an image specified user ID [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/54/767 "[sig-network] Services should have session affinity timeout work for NodePort service [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.9s) 2025-09-02T06:59:49 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should support sysctls with slashes as separator [MinimumKubeletVersion:1.23] [Environment:NotInUserNS] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/55/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - increase init container CPU only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1s) 2025-09-02T06:59:50 "[sig-api-machinery] API priority and fairness should support FlowSchema API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/56/767 "[sig-network] Services should allow pods to hairpin back to themselves through services [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.4s) 2025-09-02T06:59:51 "[sig-node] Pods Extended Delete Grace Period should be submitted and removed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/57/767 "[sig-windows] [Feature:Windows] SecurityContext should be able to create pod and run containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.9s) 2025-09-02T06:59:51 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST NOT fail to update a resource due to CRD Validation Rule errors on unchanged correlatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/58/767 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should type check validation expressions [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T06:59:52 "[sig-windows] [Feature:Windows] SecurityContext should be able to create pod and run containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/59/767 "[sig-api-machinery] ResourceQuota should apply changes to a resourcequota status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T06:59:52Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-scope-selectors-4921 pod:pfpod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (700ms) 2025-09-02T06:59:53 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should type check validation expressions [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/60/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should override timeoutGracePeriodSeconds when LivenessProbe field is set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.8s) 2025-09-02T06:59:53 "[sig-cli] Kubectl client Update Demo should create and stop a replication controller [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/61/767 "[sig-network] Services should create endpoints for unready pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.6s) 2025-09-02T06:59:54 "[sig-cli] Kubectl client Kubectl replace should update a single-container pod's image [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/62/767 "[sig-node] [Feature:Example] Liveness liveness pods should be automatically restarted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T06:59:54 "[sig-apps] Deployment RecreateDeployment should delete old pods and create new ones [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/63/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T06:59:54 "[sig-network] Services should allow pods to hairpin back to themselves through services [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/64/767 "[sig-apps] ReplicationController should surface a failure condition on a common issue like exceeded quota [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T06:59:55 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to create and update mutating webhook configurations with match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/65/767 "[sig-cli] Kubectl client Simple pod should support exec through an HTTP proxy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T06:59:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-services-8939 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:slow-terminating-unready-pod-64f64c4bf7-vq7wm]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T06:59:56Z lastTimestamp:2025-09-02T06:59:56Z reason:Unhealthy]}" +passed: (14s) 2025-09-02T06:59:56 "[sig-network] Services should serve endpoints on same port and different protocol for internal traffic on Type LoadBalancer [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/66/767 "[sig-apps] CronJob should be able to schedule after more than 100 missed schedule [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.7s) 2025-09-02T06:59:56 "[sig-node] Events should be sent by kubelets and the scheduler about pods scheduling and running [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/67/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should list, patch and delete a collection of StatefulSets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.5s) 2025-09-02T06:59:57 "[sig-apps] ReplicationController should surface a failure condition on a common issue like exceeded quota [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/68/767 "[sig-cli] Kubectl exec should be able to execute 1000 times in a container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T06:59:57Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-services-8939 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:slow-terminating-unready-pod-64f64c4bf7-vq7wm]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T06:59:56Z lastTimestamp:2025-09-02T06:59:57Z reason:Unhealthy]}" +time="2025-09-02T06:59:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-scope-selectors-4921 pod:burstable-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T06:59:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-services-8939 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:slow-terminating-unready-pod-64f64c4bf7-vq7wm]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T06:59:56Z lastTimestamp:2025-09-02T06:59:59Z reason:Unhealthy]}" +passed: (9s) 2025-09-02T07:00:00 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - increase init container CPU only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/69/767 "[sig-network] Ingress API should support creating Ingress API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:00:00 "[sig-apps] CronJob should be able to schedule after more than 100 missed schedule [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/70/767 "[sig-cli] Kubectl client Kubectl apply should reuse port when apply to an existing SVC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.9s) 2025-09-02T07:00:00 "[sig-network] Services should create endpoints for unready pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/71/767 "[sig-windows] [Feature:Windows] DNS should support configurable pod DNS servers [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:00:00.593962 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (13.6s) 2025-09-02T07:00:00 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, three containers - no change for c1, increase c2 resources, decrease c3 (net decrease for pod) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/72/767 "[sig-apps] CronJob should delete failed finished jobs with limit of one job [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:00:01 "[sig-windows] [Feature:Windows] DNS should support configurable pod DNS servers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/73/767 "[sig-api-machinery] Server request timeout should return HTTP status code 400 if the user specifies an invalid timeout in the request URL [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.1s) 2025-09-02T07:00:01 "[sig-cli] Kubectl rollout undo undo should rollback and update deployment env [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/74/767 "[sig-apps] Job should update the status ready field [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.3s) 2025-09-02T07:00:02 "[sig-node] Probing container should override timeoutGracePeriodSeconds when StartupProbe field is set [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/75/767 "[sig-network] DNS should provide /etc/hosts entries for the cluster [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.3s) 2025-09-02T07:00:02 "[sig-network] Ingress API should support creating Ingress API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/76/767 "[sig-node] Probing container should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.3s) 2025-09-02T07:00:02 "[sig-cli] Kubectl client Kubectl apply should reuse port when apply to an existing SVC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/77/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container, one restartable init container - decrease init container CPU [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:00:03 "[sig-api-machinery] Server request timeout should return HTTP status code 400 if the user specifies an invalid timeout in the request URL [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/78/767 "[sig-apps] Job should allow to delegate reconciliation to external controller [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.1s) 2025-09-02T07:00:03 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a /healthz http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/79/767 "[sig-network] DNS HostNetwork spec.Hostname field is not silently ignored and is used for hostname for a Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (16.8s) 2025-09-02T07:00:05 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with best effort scope using scope-selectors. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/80/767 "[sig-node] PodTemplates should replace a pod template [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:05Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:1ab14eb8af namespace:e2e-container-probe-9274 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:busybox-sidecar-dfdec0b2-c9c3-44ed-a228-437f2ec434ab]}" message="{Unhealthy Liveness probe failed: Get \"http://10.131.2.28:8080/healthz\": dial tcp 10.131.2.28:8080: connect: connection refused map[firstTimestamp:2025-09-02T07:00:05Z lastTimestamp:2025-09-02T07:00:05Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:00:06 "[sig-node] PodTemplates should replace a pod template [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/81/767 "[sig-api-machinery] Watchers should observe add, update, and delete watch notifications on configmaps [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (11.7s) 2025-09-02T07:00:06 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/82/767 "[sig-node] Variable Expansion should fail substituting values in a volume subpath with absolute path [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-2572 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:busybox-6224f28e-bdf5-4c7d-b582-f1433cd80a5d]}" message="{Unhealthy Readiness probe failed: command timed out map[firstTimestamp:2025-09-02T07:00:07Z lastTimestamp:2025-09-02T07:00:07Z reason:Unhealthy]}" +passed: (2.8s) 2025-09-02T07:00:07 "[sig-network] DNS HostNetwork spec.Hostname field is not silently ignored and is used for hostname for a Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/83/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3.5s) 2025-09-02T07:00:07 "[sig-apps] Job should allow to delegate reconciliation to external controller [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/84/767 "[sig-network] Services should fallback to local terminating endpoints when there are no ready endpoints with externalTrafficPolicy=Local [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:00:09 "[sig-network] DNS should provide /etc/hosts entries for the cluster [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/85/767 "[sig-auth] [Feature:NodeAuthorizer] Getting an existing secret should exit with the Forbidden error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.9s) 2025-09-02T07:00:09 "[sig-cli] Kubectl client Simple pod should support exec through an HTTP proxy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/86/767 "[sig-node] Downward API should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:00:11 "[sig-auth] [Feature:NodeAuthorizer] Getting an existing secret should exit with the Forbidden error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/87/767 "[sig-network] Services should be able to change the type from ClusterIP to ExternalName [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (31.3s) 2025-09-02T07:00:12 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Decreasing .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/88/767 "[sig-network] Services should connect to the ports exposed by restartable init containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (18.6s) 2025-09-02T07:00:13 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should override timeoutGracePeriodSeconds when LivenessProbe field is set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/89/767 "[sig-node] Security Context when creating containers with AllowPrivilegeEscalation should allow privilege escalation when true [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (32.9s) 2025-09-02T07:00:13 "[sig-node] Probing container should be restarted with a failing exec liveness probe that took longer than the timeout [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/90/767 "[sig-node] Kubelet when scheduling a busybox command in a pod should print the output to logs [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.7s) 2025-09-02T07:00:13 "[sig-apps] Job should update the status ready field [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/91/767 "[sig-network] Netpol NetworkPolicy between server and client should deny egress from all pods in a namespace [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:00:14 "[sig-node] Variable Expansion should fail substituting values in a volume subpath with absolute path [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/92/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease memory requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.3s) 2025-09-02T07:00:14 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container, one restartable init container - decrease init container CPU [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/93/767 "[sig-cli] Kubectl Port forwarding With a server listening on localhost that expects NO client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:00:15 "[sig-node] Downward API should provide container's limits.cpu/memory and requests.cpu/memory as env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/94/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail validation for create of a custom resource that does not satisfy the x-kubernetes-validations rules [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (35.2s) 2025-09-02T07:00:15 "[sig-network] Netpol NetworkPolicy between server and client should support a 'default-deny-ingress' policy [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/95/767 "[sig-network] Networking Granular Checks: Services should support basic nodePort: udp functionality [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:16Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:4dcd25a74a namespace:e2e-webhook-6401 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:sample-webhook-deployment-5bdc5b565b-wc5d5]}" message="{Unhealthy Readiness probe failed: Get \"https://10.131.2.34:8444/readyz\": dial tcp 10.131.2.34:8444: connect: connection refused map[firstTimestamp:2025-09-02T07:00:16Z lastTimestamp:2025-09-02T07:00:16Z reason:Unhealthy]}" +passed: (8.4s) 2025-09-02T07:00:16 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/96/767 "[sig-api-machinery] Garbage collector should delete pods created by rc when not orphaning [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:00:16 "[sig-node] Kubelet when scheduling a busybox command in a pod should print the output to logs [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/97/767 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop exec hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-2572 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:busybox-6224f28e-bdf5-4c7d-b582-f1433cd80a5d]}" message="{Unhealthy Readiness probe failed: command timed out map[count:2 firstTimestamp:2025-09-02T07:00:07Z lastTimestamp:2025-09-02T07:00:17Z reason:Unhealthy]}" +passed: (5.5s) 2025-09-02T07:00:17 "[sig-network] Services should be able to change the type from ClusterIP to ExternalName [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/98/767 "[sig-cli] Kubectl Port forwarding With a server listening on localhost that expects a client request should support a client that connects, sends NO DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:17Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:803e8c237f namespace:e2e-statefulset-3819 pod:ss-2]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": binding volumes: pod does not exist any more: pod \"ss-2\" not found map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (27.5s) 2025-09-02T07:00:18 "[sig-cli] Kubectl client Simple pod should contain last line of the log [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/99/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of same group but different versions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:a94a60953c namespace:e2e-statefulset-2594 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-ss-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.37:80/index.html\": dial tcp 10.130.2.37:80: connect: connection refused map[firstTimestamp:2025-09-02T07:00:18Z lastTimestamp:2025-09-02T07:00:18Z reason:Unhealthy]}" +passed: (20.8s) 2025-09-02T07:00:18 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should list, patch and delete a collection of StatefulSets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/100/767 "[sig-auth] SelfSubjectReview testing SSR in different API groups authentication/v1beta1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/auth/selfsubjectreviews.go:71]: expected SelfSubjectReview API group/version, got []v1.APIGroup{v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"apiregistration.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"apiregistration.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"apiregistration.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"apps", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"apps/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"apps/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"events.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"events.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"events.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"authentication.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"authentication.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"authentication.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"authorization.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"authorization.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"authorization.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"autoscaling", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"autoscaling/v2", Version:"v2"}, v1.GroupVersionForDiscovery{GroupVersion:"autoscaling/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"autoscaling/v2", Version:"v2"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"batch", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"batch/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"batch/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"certificates.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"certificates.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"certificates.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"networking.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"networking.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"networking.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"policy", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"policy/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"policy/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"rbac.authorization.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"rbac.authorization.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"rbac.authorization.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"storage.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"storage.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"storage.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"admissionregistration.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"admissionregistration.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"admissionregistration.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"apiextensions.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"apiextensions.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"apiextensions.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"scheduling.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"scheduling.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"scheduling.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"coordination.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"coordination.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"coordination.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"node.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"node.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"node.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"discovery.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"discovery.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"discovery.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"flowcontrol.apiserver.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"flowcontrol.apiserver.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"flowcontrol.apiserver.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"apps.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"apps.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"apps.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"authorization.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"authorization.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"authorization.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"build.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"build.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"build.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"image.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"image.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"image.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"oauth.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"oauth.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"oauth.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"project.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"project.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"project.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"quota.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"quota.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"quota.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"route.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"route.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"route.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"security.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"security.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"security.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"template.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"template.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"template.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"user.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"user.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"user.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"packages.operators.coreos.com", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"packages.operators.coreos.com/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"packages.operators.coreos.com/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"apiserver.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"apiserver.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"apiserver.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"autoscaling.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"autoscaling.openshift.io/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"autoscaling.openshift.io/v1beta1", Version:"v1beta1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"autoscaling.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"cloud.network.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"cloud.network.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"cloud.network.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"cloudcredential.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"cloudcredential.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"cloudcredential.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"config.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"config.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"config.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"console.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"console.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"console.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"controlplane.operator.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"controlplane.operator.openshift.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"controlplane.operator.openshift.io/v1alpha1", Version:"v1alpha1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"crd-publish-openapi-test-multi-ver.example.com", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"crd-publish-openapi-test-multi-ver.example.com/v3", Version:"v3"}, v1.GroupVersionForDiscovery{GroupVersion:"crd-publish-openapi-test-multi-ver.example.com/v2", Version:"v2"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"crd-publish-openapi-test-multi-ver.example.com/v3", Version:"v3"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"gateway.networking.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"gateway.networking.k8s.io/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"gateway.networking.k8s.io/v1beta1", Version:"v1beta1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"gateway.networking.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"helm.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"helm.openshift.io/v1beta1", Version:"v1beta1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"helm.openshift.io/v1beta1", Version:"v1beta1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"imageregistry.operator.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"imageregistry.operator.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"imageregistry.operator.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"infrastructure.cluster.x-k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"infrastructure.cluster.x-k8s.io/v1beta1", Version:"v1beta1"}, v1.GroupVersionForDiscovery{GroupVersion:"infrastructure.cluster.x-k8s.io/v1alpha5", Version:"v1alpha5"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"infrastructure.cluster.x-k8s.io/v1beta1", Version:"v1beta1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"ingress.operator.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"ingress.operator.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"ingress.operator.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"ipam.cluster.x-k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"ipam.cluster.x-k8s.io/v1beta1", Version:"v1beta1"}, v1.GroupVersionForDiscovery{GroupVersion:"ipam.cluster.x-k8s.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"ipam.cluster.x-k8s.io/v1beta1", Version:"v1beta1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"k8s.cni.cncf.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"k8s.cni.cncf.io/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"k8s.cni.cncf.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"k8s.cni.cncf.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"k8s.ovn.org", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"k8s.ovn.org/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"k8s.ovn.org/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"machine.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"machine.openshift.io/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"machine.openshift.io/v1beta1", Version:"v1beta1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"machine.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"machineconfiguration.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"machineconfiguration.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"machineconfiguration.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"metal3.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"metal3.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"metal3.io/v1alpha1", Version:"v1alpha1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"migration.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"migration.k8s.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"migration.k8s.io/v1alpha1", Version:"v1alpha1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"monitoring.coreos.com", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"monitoring.coreos.com/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"monitoring.coreos.com/v1beta1", Version:"v1beta1"}, v1.GroupVersionForDiscovery{GroupVersion:"monitoring.coreos.com/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"monitoring.coreos.com/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"monitoring.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"monitoring.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"monitoring.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"network.operator.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"network.operator.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"network.operator.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"olm.operatorframework.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"olm.operatorframework.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"olm.operatorframework.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"operator.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"operator.openshift.io/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"operator.openshift.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"operator.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"operators.coreos.com", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"operators.coreos.com/v2", Version:"v2"}, v1.GroupVersionForDiscovery{GroupVersion:"operators.coreos.com/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"operators.coreos.com/v1alpha2", Version:"v1alpha2"}, v1.GroupVersionForDiscovery{GroupVersion:"operators.coreos.com/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"operators.coreos.com/v2", Version:"v2"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"performance.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"performance.openshift.io/v2", Version:"v2"}, v1.GroupVersionForDiscovery{GroupVersion:"performance.openshift.io/v1", Version:"v1"}, v1.GroupVersionForDiscovery{GroupVersion:"performance.openshift.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"performance.openshift.io/v2", Version:"v2"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"policy.networking.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"policy.networking.k8s.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"policy.networking.k8s.io/v1alpha1", Version:"v1alpha1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"populator.storage.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"populator.storage.k8s.io/v1beta1", Version:"v1beta1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"populator.storage.k8s.io/v1beta1", Version:"v1beta1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"samples.operator.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"samples.operator.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"samples.operator.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"security.internal.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"security.internal.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"security.internal.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"snapshot.storage.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"snapshot.storage.k8s.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"snapshot.storage.k8s.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"tuned.openshift.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"tuned.openshift.io/v1", Version:"v1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"tuned.openshift.io/v1", Version:"v1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"whereabouts.cni.cncf.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"whereabouts.cni.cncf.io/v1alpha1", Version:"v1alpha1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"whereabouts.cni.cncf.io/v1alpha1", Version:"v1alpha1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}, v1.APIGroup{TypeMeta:v1.TypeMeta{Kind:"", APIVersion:""}, Name:"metrics.k8s.io", Versions:[]v1.GroupVersionForDiscovery{v1.GroupVersionForDiscovery{GroupVersion:"metrics.k8s.io/v1beta1", Version:"v1beta1"}}, PreferredVersion:v1.GroupVersionForDiscovery{GroupVersion:"metrics.k8s.io/v1beta1", Version:"v1beta1"}, ServerAddressByClientCIDRs:[]v1.ServerAddressByClientCIDR(nil)}} + +skipped: (500ms) 2025-09-02T07:00:20 "[sig-auth] SelfSubjectReview testing SSR in different API groups authentication/v1beta1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/101/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should reject mutating webhook configurations with invalid match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.2s) 2025-09-02T07:00:20 "[sig-network] Services should connect to the ports exposed by restartable init containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/102/767 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with cross namespace pod affinity scope using scope-selectors. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:00:20 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail validation for create of a custom resource that does not satisfy the x-kubernetes-validations rules [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/103/767 "[sig-apps] DisruptionController evictions: enough pods, absolute => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:00:20 "[sig-node] Security Context when creating containers with AllowPrivilegeEscalation should allow privilege escalation when true [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/104/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, mixed containers - add requests [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (41.3s) 2025-09-02T07:00:22 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Removing .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/105/767 "[sig-api-machinery] Servers with support for Table transformation should return pod details [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.5s) 2025-09-02T07:00:22 "[sig-cli] Kubectl exec should be able to execute 1000 times in a container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/106/767 "[sig-node] Security Context When creating a pod with HostUsers must create the user namespace if set to false [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (39.2s) 2025-09-02T07:00:23 "[sig-network] Services should fallback to terminating endpoints when there are no ready endpoints with internalTrafficPolicy=Cluster [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/107/767 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/json\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:23Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-cross-namespace-pod-affinity-313 pod:no-cross-namespace-affinity]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:00:24Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-cross-namespace-pod-affinity-313 pod:with-namespaces]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (3.1s) 2025-09-02T07:00:24 "[sig-apps] DisruptionController evictions: enough pods, absolute => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/108/767 "[sig-node] Pods should get a host IP [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (900ms) 2025-09-02T07:00:24 "[sig-api-machinery] Servers with support for Table transformation should return pod details [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/109/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU requests and limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:24Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:24Z reason:Unhealthy]}" +passed: (8.9s) 2025-09-02T07:00:24 "[sig-cli] Kubectl Port forwarding With a server listening on localhost that expects NO client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/110/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU limits only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:00:24 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/json\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/111/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource that exceeds the runtime cost limit for x-kubernetes-validations rule execution [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:25Z reason:Unhealthy]}" +passed: (5s) 2025-09-02T07:00:25 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should reject mutating webhook configurations with invalid match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/112/767 "[sig-node] Kubelet when scheduling a busybox command that always fails in a pod should be possible to delete [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:26Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-cross-namespace-pod-affinity-313 pod:with-namespace-selector]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:00:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:26Z reason:Unhealthy]}" +time="2025-09-02T07:00:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:26Z reason:Unhealthy]}" +passed: (9s) 2025-09-02T07:00:26 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop exec hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/113/767 "[sig-network] Netpol NetworkPolicy between server and client should not allow access by TCP when a policy specifies only UDP [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:26Z reason:Unhealthy]}" +passed: (11.8s) 2025-09-02T07:00:27 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease memory requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/114/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease memory requests and increase memory limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:00:27 "[sig-node] Kubelet when scheduling a busybox command that always fails in a pod should be possible to delete [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/115/767 "[sig-node] Probing container should override timeoutGracePeriodSeconds when LivenessProbe field is set [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-2572 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:busybox-6224f28e-bdf5-4c7d-b582-f1433cd80a5d]}" message="{Unhealthy Readiness probe failed: command timed out map[count:3 firstTimestamp:2025-09-02T07:00:07Z lastTimestamp:2025-09-02T07:00:27Z reason:Unhealthy]}" +time="2025-09-02T07:00:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:27Z reason:Unhealthy]}" +passed: (8.9s) 2025-09-02T07:00:27 "[sig-cli] Kubectl Port forwarding With a server listening on localhost that expects a client request should support a client that connects, sends NO DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/116/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] BestEffort QoS pod - empty resize [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.8s) 2025-09-02T07:00:27 "[sig-node] Pods should get a host IP [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/117/767 "[sig-network] Services should have session affinity work for NodePort service [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (20.6s) 2025-09-02T07:00:27 "[sig-api-machinery] Watchers should observe add, update, and delete watch notifications on configmaps [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/118/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - increase init container CPU & memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:27Z reason:Unhealthy]}" +time="2025-09-02T07:00:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:28Z reason:Unhealthy]}" +passed: (10.8s) 2025-09-02T07:00:28 "[sig-api-machinery] Garbage collector should delete pods created by rc when not orphaning [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/119/767 "[sig-apps] Job should fail to exceed backoffLimit [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (39.5s) 2025-09-02T07:00:28 "[sig-node] Probing container should mark readiness on pods to false while pod is in progress of terminating when a pod has a readiness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/120/767 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should not delete PVCs when there is another controller [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.2s) 2025-09-02T07:00:28 "[sig-node] Security Context When creating a pod with HostUsers must create the user namespace if set to false [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/121/767 "[sig-auth] NodeAuthenticator The kubelet's main port 10250 should reject requests with no credentials [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:28Z reason:Unhealthy]}" +time="2025-09-02T07:00:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:28Z reason:Unhealthy]}" +time="2025-09-02T07:00:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:29Z reason:Unhealthy]}" +time="2025-09-02T07:00:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:29Z reason:Unhealthy]}" +time="2025-09-02T07:00:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:30Z reason:Unhealthy]}" +passed: (9.3s) 2025-09-02T07:00:30 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with cross namespace pod affinity scope using scope-selectors. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/122/767 "[sig-node] Secrets should be consumable from pods in env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.4s) 2025-09-02T07:00:30 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource that exceeds the runtime cost limit for x-kubernetes-validations rule execution [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/123/767 "[sig-apps] ReplicationController should serve a basic image on each replica with a public image [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:30Z reason:Unhealthy]}" +time="2025-09-02T07:00:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:31Z reason:Unhealthy]}" +passed: (2.8s) 2025-09-02T07:00:31 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] BestEffort QoS pod - empty resize [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/124/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail update of a custom resource that does not satisfy a x-kubernetes-validations transition rule [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:31Z reason:Unhealthy]}" +time="2025-09-02T07:00:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:32Z reason:Unhealthy]}" +passed: (2.7s) 2025-09-02T07:00:32 "[sig-auth] NodeAuthenticator The kubelet's main port 10250 should reject requests with no credentials [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/125/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should support init containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:32Z reason:Unhealthy]}" +time="2025-09-02T07:00:33Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:33Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:00:33 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should support init containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/126/767 "[sig-cli] Kubectl client Simple pod should support exec through kubectl proxy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:00:33 "[sig-node] Secrets should be consumable from pods in env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/127/767 "[sig-node] Container Runtime blackbox test when running a container with a new image should not be able to pull image from invalid registry [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:33Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:33Z reason:Unhealthy]}" +time="2025-09-02T07:00:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:34Z reason:Unhealthy]}" +passed: (6.6s) 2025-09-02T07:00:34 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease memory requests and increase memory limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/128/767 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop https hook properly [MinimumKubeletVersion:1.23] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:34Z reason:Unhealthy]}" +time="2025-09-02T07:00:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:35Z reason:Unhealthy]}" +passed: (13s) 2025-09-02T07:00:35 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, mixed containers - add requests [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/129/767 "[sig-network] Services should fail health check node port if there are only terminating endpoints [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.8s) 2025-09-02T07:00:35 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU limits only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/130/767 "[sig-network] Networking Granular Checks: Services should update endpoints: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.5s) 2025-09-02T07:00:35 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail update of a custom resource that does not satisfy a x-kubernetes-validations transition rule [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/131/767 "[sig-apps] Deployment should not disrupt a cloud load-balancer's connectivity during rollout [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:35Z reason:Unhealthy]}" +time="2025-09-02T07:00:36Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:9391c01821 namespace:e2e-container-runtime-7980 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:image-pull-test468b1b83-8d96-4b56-b41b-2c9ece6a0814]}" message="{Failed Failed to pull image \"invalid.registry.k8s.io/invalid/alpine:3.1\": RegistryUnavailable: unable to pull image or OCI artifact: pull image err: initializing source docker://invalid.registry.k8s.io/invalid/alpine:3.1: pinging container registry invalid.registry.k8s.io: Get \"https://invalid.registry.k8s.io/v2/\": dial tcp 0.0.0.0:443: connect: connection refused; artifact err: get manifest: build image source: pinging container registry invalid.registry.k8s.io: Get \"https://invalid.registry.k8s.io/v2/\": dial tcp 0.0.0.0:443: connect: connection refused map[firstTimestamp:2025-09-02T07:00:35Z lastTimestamp:2025-09-02T07:00:35Z reason:Failed]}" +passed: (11s) 2025-09-02T07:00:36 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU requests and limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/132/767 "[sig-network] Networking Granular Checks: Services should function for endpoint-Service: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:36Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:0afd891ee1 namespace:e2e-container-runtime-7980 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:image-pull-test468b1b83-8d96-4b56-b41b-2c9ece6a0814]}" message="{BackOff Back-off pulling image \"invalid.registry.k8s.io/invalid/alpine:3.1\" map[firstTimestamp:2025-09-02T07:00:36Z lastTimestamp:2025-09-02T07:00:36Z reason:BackOff]}" +passed: (55.2s) 2025-09-02T07:00:36 "[sig-node] Probing container should be restarted with an exec liveness probe with timeout [MinimumKubeletVersion:1.20] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/133/767 "[sig-apps] DisruptionController evictions: maxUnavailable allow single eviction, percentage => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:36Z reason:Unhealthy]}" +time="2025-09-02T07:00:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:36Z reason:Unhealthy]}" +passed: (5.6s) 2025-09-02T07:00:36 "[sig-apps] ReplicationController should serve a basic image on each replica with a public image [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/134/767 "[sig-network] Netpol NetworkPolicy between server and client should allow egress access to server in CIDR block [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:37Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:0afd891ee1 namespace:e2e-container-runtime-7980 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:image-pull-test468b1b83-8d96-4b56-b41b-2c9ece6a0814]}" message="{BackOff Back-off pulling image \"invalid.registry.k8s.io/invalid/alpine:3.1\" map[count:2 firstTimestamp:2025-09-02T07:00:36Z lastTimestamp:2025-09-02T07:00:37Z reason:BackOff]}" +time="2025-09-02T07:00:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-2572 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:busybox-6224f28e-bdf5-4c7d-b582-f1433cd80a5d]}" message="{Unhealthy Readiness probe failed: command timed out map[count:4 firstTimestamp:2025-09-02T07:00:07Z lastTimestamp:2025-09-02T07:00:37Z reason:Unhealthy]}" +time="2025-09-02T07:00:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:37Z reason:Unhealthy]}" +passed: (50.8s) 2025-09-02T07:00:37 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs after adopting pod (WhenScaled) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/135/767 "[sig-network] DNS should provide DNS for the cluster [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:37Z reason:Unhealthy]}" +time="2025-09-02T07:00:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:38Z reason:Unhealthy]}" +passed: (3.6s) 2025-09-02T07:00:38 "[sig-node] Container Runtime blackbox test when running a container with a new image should not be able to pull image from invalid registry [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/136/767 "[sig-api-machinery] Generated clientset should create v1 cronJobs, delete cronJobs, watch cronJobs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:38Z reason:Unhealthy]}" +time="2025-09-02T07:00:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:39Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:00:39 "[sig-api-machinery] Generated clientset should create v1 cronJobs, delete cronJobs, watch cronJobs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/137/767 "[sig-api-machinery] FieldValidation should create/apply a CR with unknown fields for CRD with no validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:39Z reason:Unhealthy]}" +time="2025-09-02T07:00:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:40Z reason:Unhealthy]}" +time="2025-09-02T07:00:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:40Z reason:Unhealthy]}" +time="2025-09-02T07:00:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:41Z reason:Unhealthy]}" +passed: (2.7s) 2025-09-02T07:00:41 "[sig-network] DNS should provide DNS for the cluster [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/138/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST evaluate a CRD Validation Rule with oldSelf = nil for new values when optionalOldSelf is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.5s) 2025-09-02T07:00:41 "[sig-network] Services should fail health check node port if there are only terminating endpoints [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/139/767 "[sig-network] Services should be able to change the type from ExternalName to ClusterIP [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:41Z reason:Unhealthy]}" +passed: (13s) 2025-09-02T07:00:41 "[sig-network] Services should have session affinity work for NodePort service [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/140/767 "[sig-cli] Kubectl logs default container logs the second container is the default-container by annotation should log default container if not specified [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:00:42 "[sig-apps] DisruptionController evictions: maxUnavailable allow single eviction, percentage => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/141/767 "[sig-network] Services should work after the service has been recreated [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:42Z reason:Unhealthy]}" +time="2025-09-02T07:00:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:42Z reason:Unhealthy]}" +time="2025-09-02T07:00:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:43Z reason:Unhealthy]}" +time="2025-09-02T07:00:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:43Z reason:Unhealthy]}" +time="2025-09-02T07:00:44Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:44Z reason:Unhealthy]}" +passed: (1.9s) 2025-09-02T07:00:44 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST evaluate a CRD Validation Rule with oldSelf = nil for new values when optionalOldSelf is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/142/767 "[sig-node] ConfigMap should update ConfigMap successfully [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.7s) 2025-09-02T07:00:44 "[sig-api-machinery] FieldValidation should create/apply a CR with unknown fields for CRD with no validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/143/767 "[sig-network] Networking Granular Checks: Services should function for multiple endpoint-Services with same selector [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m3s) 2025-09-02T07:00:44 "[sig-cli] Kubectl client Simple pod should support inline execution and attach [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/144/767 "[sig-api-machinery] Garbage collector should not be blocked by dependency circle [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (15.7s) 2025-09-02T07:00:44 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - increase init container CPU & memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/145/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against a pod with different priority class (ScopeSelectorOpNotIn). [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:44Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:44Z reason:Unhealthy]}" +time="2025-09-02T07:00:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:45Z reason:Unhealthy]}" +passed: (1m5s) 2025-09-02T07:00:45 "[sig-node] Probing container should not be ready with an exec readiness probe timeout [MinimumKubeletVersion:1.20] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/146/767 "[sig-node] Probing container should *not* be restarted with a non-local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:45Z reason:Unhealthy]}" +passed: (11s) 2025-09-02T07:00:46 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop https hook properly [MinimumKubeletVersion:1.23] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/147/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of same group and version but different kinds [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:46Z reason:Unhealthy]}" +passed: (16.8s) 2025-09-02T07:00:46 "[sig-apps] Job should fail to exceed backoffLimit [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/148/767 "[sig-network] Networking Granular Checks: Pods should function for intra-pod communication: udp [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (900ms) 2025-09-02T07:00:46 "[sig-node] ConfigMap should update ConfigMap successfully [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/149/767 "[sig-node] Probing container should *not* be restarted by liveness probe because startup probe delays it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:00:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:46Z reason:Unhealthy]}" +time="2025-09-02T07:00:47Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:00:24Z lastTimestamp:2025-09-02T07:00:47Z reason:Unhealthy]}" +time="2025-09-02T07:00:47Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:47Z reason:Unhealthy]}" +time="2025-09-02T07:00:48Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-2248 pod:testpod-pclass7]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:00:48Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:3dcc6746a7 namespace:e2e-container-probe-5799 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:busybox-0be30855-f919-4bb9-9223-7cd517b0fca0]}" message="{Unhealthy Liveness probe failed: Get \"http://10.129.2.54:8080/healthz\": dial tcp 10.129.2.54:8080: connect: connection refused map[firstTimestamp:2025-09-02T07:00:48Z lastTimestamp:2025-09-02T07:00:48Z reason:Unhealthy]}" +time="2025-09-02T07:00:48Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:48Z reason:Unhealthy]}" +passed: (40.8s) 2025-09-02T07:00:49 "[sig-network] Services should fallback to local terminating endpoints when there are no ready endpoints with externalTrafficPolicy=Local [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/150/767 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with terminating scopes. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:00:26Z lastTimestamp:2025-09-02T07:00:49Z reason:Unhealthy]}" +passed: (15.8s) 2025-09-02T07:00:50 "[sig-cli] Kubectl client Simple pod should support exec through kubectl proxy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/151/767 "[sig-node] Pods Extended Pod Container Status should never report container start when an init container fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (35.8s) 2025-09-02T07:00:50 "[sig-network] Netpol NetworkPolicy between server and client should deny egress from all pods in a namespace [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/152/767 "[sig-node] Downward API should provide host IP and pod IP as an env var if pod uses host network [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23s) 2025-09-02T07:00:50 "[sig-network] Netpol NetworkPolicy between server and client should not allow access by TCP when a policy specifies only UDP [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/153/767 "[sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile specified on the container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:00:50 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against a pod with different priority class (ScopeSelectorOpNotIn). [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/154/767 "[sig-cli] Kubectl client Simple pod should support exec [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.6s) 2025-09-02T07:00:51 "[sig-network] Services should be able to change the type from ExternalName to ClusterIP [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/155/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should run as localgroup accounts [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.2s) 2025-09-02T07:00:52 "[sig-api-machinery] Garbage collector should not be blocked by dependency circle [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/156/767 "[sig-auth] [Feature:NodeAuthorizer] Getting an existing configmap should exit with the Forbidden error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/framework/skipper/skipper.go:222]: Only supported for node OS distro [gci ubuntu] (not custom) + +skipped: (500ms) 2025-09-02T07:00:52 "[sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile specified on the container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/157/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should override timeoutGracePeriodSeconds when StartupProbe field is set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:00:52 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should run as localgroup accounts [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/158/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container with readiness probe that fails should never be ready and never restart [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:00:53 "[sig-auth] [Feature:NodeAuthorizer] Getting an existing configmap should exit with the Forbidden error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/159/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a GRPC liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (26.9s) 2025-09-02T07:00:54 "[sig-node] Probing container should override timeoutGracePeriodSeconds when LivenessProbe field is set [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/160/767 "[sig-cli] Kubectl client Kubectl cluster-info should check if Kubernetes control plane services is included in cluster-info [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (11.3s) 2025-09-02T07:00:54 "[sig-cli] Kubectl logs default container logs the second container is the default-container by annotation should log default container if not specified [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/161/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] updates the published spec when one version gets renamed [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:00:55Z reason:Unhealthy]}" +time="2025-09-02T07:00:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-429 pod:test-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:00:56Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:00:56Z reason:Unhealthy]}" +passed: (4.8s) 2025-09-02T07:00:56 "[sig-node] Downward API should provide host IP and pod IP as an env var if pod uses host network [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/162/767 "[sig-cli] Kubectl client Kubectl apply should apply a new configuration to an existing RC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:00:56 "[sig-cli] Kubectl client Kubectl cluster-info should check if Kubernetes control plane services is included in cluster-info [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/163/767 "[sig-node] Probing container should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:00:57Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:3 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:00:57Z reason:Unhealthy]}" +passed: (1.1s) 2025-09-02T07:00:58 "[sig-cli] Kubectl client Kubectl apply should apply a new configuration to an existing RC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/164/767 "[sig-api-machinery] Garbage collector should support cascading deletion of custom resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m18s) 2025-09-02T07:00:58 "[sig-network] Networking Granular Checks: Services should function for node-Service: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/165/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.9s) 2025-09-02T07:00:58 "[sig-network] Netpol NetworkPolicy between server and client should allow egress access to server in CIDR block [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/166/767 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart http hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (15.7s) 2025-09-02T07:00:59 "[sig-network] Services should work after the service has been recreated [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/167/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] removes definition from spec when one version gets changed to not be served [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + + I0902 07:01:00.876670 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +time="2025-09-02T07:01:01Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-429 pod:terminating-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:01:03Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:8f0cbb65a1 namespace:e2e-cronjob-5119 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:failed-jobs-history-limit-29279941-frz82]}" message="{BackOff Back-off restarting failed container c in pod failed-jobs-history-limit-29279941-frz82_e2e-cronjob-5119(3b8a07fc-dd28-4c4f-8518-242b01c1a832) map[firstTimestamp:2025-09-02T07:01:03Z lastTimestamp:2025-09-02T07:01:03Z reason:BackOff]}" +passed: (17.6s) 2025-09-02T07:01:05 "[sig-network] Networking Granular Checks: Pods should function for intra-pod communication: udp [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/168/767 "[sig-instrumentation] Events API should delete a collection of events [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (900ms) 2025-09-02T07:01:06 "[sig-instrumentation] Events API should delete a collection of events [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/169/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m12s) 2025-09-02T07:01:06 "[sig-node] [Feature:Example] Liveness liveness pods should be automatically restarted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/170/767 "[sig-network] Networking Granular Checks: Services should function for client IP based session affinity: http [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:01:07Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:4 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:01:07Z reason:Unhealthy]}" +passed: (16.9s) 2025-09-02T07:01:07 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with terminating scopes. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/171/767 "[sig-api-machinery] FieldValidation should create/apply an invalid CR with extra properties for CRD with validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.5s) 2025-09-02T07:01:08 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/172/767 "[sig-node] Node Lifecycle should run through the lifecycle of a node [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (20.9s) 2025-09-02T07:01:08 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of same group and version but different kinds [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/173/767 "[sig-node] Security Context When creating a pod with privileged should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (16.7s) 2025-09-02T07:01:08 "[sig-cli] Kubectl client Simple pod should support exec [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/174/767 "[sig-node] Security Context should support pod.Spec.SecurityContext.SupplementalGroups [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.6s) 2025-09-02T07:01:08 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart http hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/175/767 "[sig-node] Probing container should be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:01:09Z" level=info msg="event interval matches TopologyAwareHintsDisabledDuringTaintManagerTests" locator="{Kind map[hmsg:d0c68b9435 namespace:openshift-dns service:dns-default]}" message="{TopologyAwareHintsDisabled Insufficient Node information: allocatable CPU or zone not specified on one or more nodes, addressType: IPv4 map[firstTimestamp:2025-09-02T07:01:09Z lastTimestamp:2025-09-02T07:01:09Z reason:TopologyAwareHintsDisabled]}" +passed: (800ms) 2025-09-02T07:01:09 "[sig-node] Node Lifecycle should run through the lifecycle of a node [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/176/767 "[sig-node] ConfigMap should be consumable via the environment [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3.7s) 2025-09-02T07:01:12 "[sig-api-machinery] FieldValidation should create/apply an invalid CR with extra properties for CRD with validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/177/767 "[sig-api-machinery] ResourceQuota should be able to update and delete ResourceQuota. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:01:13 "[sig-api-machinery] ResourceQuota should be able to update and delete ResourceQuota. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/178/767 "[sig-node] InitContainer [NodeConformance] should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:01:13 "[sig-node] Security Context When creating a pod with privileged should run the container as unprivileged when false [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/179/767 "[sig-api-machinery] Discovery should validate PreferredVersion for each APIGroup [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m21s) 2025-09-02T07:01:14 "[sig-api-machinery] ResourceQuota should apply changes to a resourcequota status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/180/767 "[sig-node] KubeletManagedEtcHosts should test kubelet managed /etc/hosts file [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:01:14 "[sig-node] Security Context should support pod.Spec.SecurityContext.SupplementalGroups [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/181/767 "[sig-network] Netpol API should support creating NetworkPolicy API with endport field [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.6s) 2025-09-02T07:01:15 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and ensure its status is promptly calculated. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/182/767 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a ClusterIP service with InternalTrafficPolicy set to Local [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:01:15 "[sig-node] ConfigMap should be consumable via the environment [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/183/767 "[sig-auth] [Feature:NodeAuthorizer] Getting a non-existent secret should exit with the Forbidden error, not a NotFound error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:01:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:5 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:01:17Z reason:Unhealthy]}" +passed: (400ms) 2025-09-02T07:01:17 "[sig-auth] [Feature:NodeAuthorizer] Getting a non-existent secret should exit with the Forbidden error, not a NotFound error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/184/767 "[sig-node] Probing container should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.3s) 2025-09-02T07:01:17 "[sig-api-machinery] Discovery should validate PreferredVersion for each APIGroup [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/185/767 "[sig-apps] CronJob should support CronJob API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:01:18 "[sig-network] Netpol API should support creating NetworkPolicy API with endport field [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/186/767 "[sig-node] [Feature:KubeletFineGrainedAuthz] when calling kubelet API check /healthz enpoint is not accessible via nodes/configz RBAC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m2s) 2025-09-02T07:01:18 "[sig-network] Networking Granular Checks: Services should support basic nodePort: udp functionality [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/187/767 "[sig-node] Secrets should be consumable via the environment [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.4s) 2025-09-02T07:01:18 "[sig-node] InitContainer [NodeConformance] should not start app containers and fail the pod if init containers fail on a RestartNever pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/188/767 "[sig-node] Probing container with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (800ms) 2025-09-02T07:01:19 "[sig-apps] CronJob should support CronJob API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/189/767 "[sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile specified on the pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.9s) 2025-09-02T07:01:20 "[sig-node] Probing container should be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/190/767 "[sig-api-machinery] Discovery should locate the groupVersion and a resource within each APIGroup [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (27s) 2025-09-02T07:01:20 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should override timeoutGracePeriodSeconds when StartupProbe field is set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/191/767 "[sig-node] Pods Extended Pods Set QOS Class should be set on Pods with matching resource requests and limits for memory and cpu [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/framework/skipper/skipper.go:222]: Only supported for node OS distro [gci ubuntu] (not custom) + +skipped: (400ms) 2025-09-02T07:01:20 "[sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile specified on the pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/192/767 "[sig-node] Probing container should mark readiness on pods to false and disable liveness probes while pod is in progress of terminating [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6s) 2025-09-02T07:01:21 "[sig-node] KubeletManagedEtcHosts should test kubelet managed /etc/hosts file [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/193/767 "[sig-apps] Job should not create pods when created in suspend state [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:01:21 "[sig-node] Pods Extended Pods Set QOS Class should be set on Pods with matching resource requests and limits for memory and cpu [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/194/767 "[sig-network] Networking Granular Checks: Services should function for client IP based session affinity: udp [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1s) 2025-09-02T07:01:22 "[sig-api-machinery] Discovery should locate the groupVersion and a resource within each APIGroup [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/195/767 "[sig-node] Lifecycle Sleep Hook when create a pod with lifecycle hook using sleep action ignore terminated container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:01:22 "[sig-node] [Feature:KubeletFineGrainedAuthz] when calling kubelet API check /healthz enpoint is not accessible via nodes/configz RBAC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/196/767 "[sig-apps] ReplicationController should release no longer matching pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (23.6s) 2025-09-02T07:01:22 "[sig-api-machinery] Garbage collector should support cascading deletion of custom resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/197/767 "[sig-network] DNS should provide DNS for the cluster [Provider:GCE] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:01:24 "[sig-apps] ReplicationController should release no longer matching pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/198/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - decrease CPU only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.9s) 2025-09-02T07:01:24 "[sig-node] Secrets should be consumable via the environment [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/199/767 "[sig-node] [Feature:ContainerStopSignals] when create a pod with a StopSignal lifecycle StopSignal defined with pod.OS [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m7s) 2025-09-02T07:01:26 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of same group but different versions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/200/767 "[sig-apps] DisruptionController evictions: no PDB => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:01:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:6 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:01:27Z reason:Unhealthy]}" +passed: (2.9s) 2025-09-02T07:01:27 "[sig-network] DNS should provide DNS for the cluster [Provider:GCE] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/201/767 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:01:28 "[sig-node] Lifecycle Sleep Hook when create a pod with lifecycle hook using sleep action ignore terminated container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/202/767 "[sig-apps] Deployment deployment reaping should cascade to its replica sets and pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.5s) 2025-09-02T07:01:28 "[sig-node] [Feature:ContainerStopSignals] when create a pod with a StopSignal lifecycle StopSignal defined with pod.OS [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/203/767 "[sig-network] Services should fallback to local terminating endpoints when there are no ready endpoints with internalTrafficPolicy=Local [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:01:29 "[sig-apps] DisruptionController evictions: no PDB => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/204/767 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs after adopting pod (WhenDeleted) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:01:31 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/205/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should not be ready with an exec readiness probe timeout [MinimumKubeletVersion:1.20] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3s) 2025-09-02T07:01:32 "[sig-apps] Deployment deployment reaping should cascade to its replica sets and pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/206/767 "[sig-node] InitContainer [NodeConformance] should invoke init containers on a RestartAlways pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (37s) 2025-09-02T07:01:32 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] updates the published spec when one version gets renamed [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/207/767 "[sig-node] Probing container should *not* be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (32.6s) 2025-09-02T07:01:32 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] removes definition from spec when one version gets changed to not be served [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/208/767 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs with a OnScaledown policy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.6s) 2025-09-02T07:01:33 "[sig-apps] Job should not create pods when created in suspend state [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/209/767 "[sig-apps] Deployment deployment should delete old replica sets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:01:37Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:7 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:01:37Z reason:Unhealthy]}" +passed: (21.1s) 2025-09-02T07:01:37 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a ClusterIP service with InternalTrafficPolicy set to Local [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/210/767 "[sig-network] Services should complete a service status lifecycle [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.1s) 2025-09-02T07:01:38 "[sig-node] InitContainer [NodeConformance] should invoke init containers on a RestartAlways pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/211/767 "[sig-network] Networking Granular Checks: Services should function for node-Service: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:01:39 "[sig-network] Services should complete a service status lifecycle [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/212/767 "[sig-network] NoSNAT Should be able to send traffic between Pods without SNAT [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.8s) 2025-09-02T07:01:41 "[sig-apps] Deployment deployment should delete old replica sets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/213/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications for partiton1 and delete pod-0 with failing container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.9s) 2025-09-02T07:01:44 "[sig-node] Probing container with readiness probe should not be ready before initial delay and never restart [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/214/767 "[sig-node] Secrets should be consumable as environment variable names when secret keys start with a digit [Feature:RelaxedEnvironmentVariableValidation] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:01:45Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:c43093d502 namespace:e2e-statefulset-1653 pod:ss-1]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": Operation cannot be fulfilled on persistentvolumeclaims \"datadir-ss-1\": the object has been modified; please apply your changes to the latest version and try again map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (54.2s) 2025-09-02T07:01:45 "[sig-node] Pods Extended Pod Container Status should never report container start when an init container fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/215/767 "[sig-node] Pods should support pod readiness gates [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:01:47Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:8 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:01:47Z reason:Unhealthy]}" +passed: (21.7s) 2025-09-02T07:01:47 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - decrease CPU only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/216/767 "[sig-apps] Job with successPolicy succeededCount rule should succeeded even when some indexes remain pending [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m12s) 2025-09-02T07:01:48 "[sig-network] Networking Granular Checks: Services should function for endpoint-Service: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/217/767 "[sig-node] Security Context When creating a pod with readOnlyRootFilesystem should run the container with readonly rootfs when readOnlyRootFilesystem=true [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (42.2s) 2025-09-02T07:01:49 "[sig-network] Networking Granular Checks: Services should function for client IP based session affinity: http [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/218/767 "[sig-cli] Kubectl client Kubectl label should update the label on a resource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:01:50 "[sig-node] Secrets should be consumable as environment variable names when secret keys start with a digit [Feature:RelaxedEnvironmentVariableValidation] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/219/767 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Strict in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node supports SupplementalGroupsPolicy it should NOT add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:01:53 "[sig-apps] Job with successPolicy succeededCount rule should succeeded even when some indexes remain pending [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/220/767 "[sig-network] Services should find a service from listing all namespaces [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (13.6s) 2025-09-02T07:01:53 "[sig-network] NoSNAT Should be able to send traffic between Pods without SNAT [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/221/767 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart exec hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m1s) 2025-09-02T07:01:53 "[sig-node] [Feature:SidecarContainers] Probing restartable init container with readiness probe that fails should never be ready and never restart [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/222/767 "[sig-cli] Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:01:54 "[sig-node] Security Context When creating a pod with readOnlyRootFilesystem should run the container with readonly rootfs when readOnlyRootFilesystem=true [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/223/767 "[sig-network] ServiceCIDR and IPAddress API should support ServiceCIDR API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (400ms) 2025-09-02T07:01:54 "[sig-network] Services should find a service from listing all namespaces [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/224/767 "[sig-cli] Kubectl client Simple pod should return command exit codes execing into a container with a failing command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.9s) 2025-09-02T07:01:54 "[sig-cli] Kubectl client Kubectl label should update the label on a resource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/225/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers container command path validation [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:01:55 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers container command path validation [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/226/767 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Strict in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node does not support SupplementalGroupsPolicy it should reject the pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:01:55 "[sig-network] ServiceCIDR and IPAddress API should support ServiceCIDR API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/227/767 "[sig-network] DNS should provide DNS for pods for Subdomain [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:01:55 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Strict in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node supports SupplementalGroupsPolicy it should NOT add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/228/767 "[sig-network] Services should serve multiport endpoints from pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:01:57Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:9 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:01:57Z reason:Unhealthy]}" +time="2025-09-02T07:01:57Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:0ff305e135 namespace:e2e-statefulset-8599 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss3-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.91:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:01:57Z lastTimestamp:2025-09-02T07:01:57Z reason:Unhealthy]}" +passed: (3.7s) 2025-09-02T07:01:58 "[sig-cli] Kubectl client Kubectl describe should check if kubectl describe prints relevant information for rc and pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/229/767 "[sig-node] Probing container should have monotonically increasing restart count [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/common/node/security_context.go:939]: scheduled node does support SupplementalGroupsPolicy + +skipped: (2.5s) 2025-09-02T07:01:59 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Strict in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node does not support SupplementalGroupsPolicy it should reject the pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/230/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST NOT fail validation for create of a custom resource that satisfies the x-kubernetes-validations rules [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:01:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-6704 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:busybox-sidecar-873f3197-f2b0-4ec6-b78d-0a62d43b0094]}" message="{Unhealthy Readiness probe failed: command timed out map[firstTimestamp:2025-09-02T07:01:59Z lastTimestamp:2025-09-02T07:01:59Z reason:Unhealthy]}" +time="2025-09-02T07:02:00Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:10 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:02:00Z reason:Unhealthy]}" + I0902 07:02:01.203248 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (14.7s) 2025-09-02T07:02:01 "[sig-node] Pods should support pod readiness gates [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/231/767 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy nil in SecurityContext when if the container's primary UID belongs to some groups in the image when scheduled node supports SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:01Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:803e8c237f namespace:e2e-statefulset-1653 pod:ss-2]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": binding volumes: pod does not exist any more: pod \"ss-2\" not found map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (53.2s) 2025-09-02T07:02:02 "[sig-node] Probing container should be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/232/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod with memory requests + limits - decrease memory limit [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.7s) 2025-09-02T07:02:03 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart exec hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/233/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST NOT fail to update a resource due to JSONSchema errors on unchanged correlatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:02:03 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST NOT fail validation for create of a custom resource that satisfies the x-kubernetes-validations rules [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/234/767 "[sig-node] PodTemplates should delete a collection of pod templates [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:03Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:b13d00c969 namespace:e2e-cronjob-5119 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:failed-jobs-history-limit-29279942-n9k4l]}" message="{BackOff Back-off restarting failed container c in pod failed-jobs-history-limit-29279942-n9k4l_e2e-cronjob-5119(0a1d0d5f-400b-4d7e-93ee-e7df602437fe) map[firstTimestamp:2025-09-02T07:02:03Z lastTimestamp:2025-09-02T07:02:03Z reason:BackOff]}" +passed: (7.8s) 2025-09-02T07:02:04 "[sig-network] DNS should provide DNS for pods for Subdomain [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/235/767 "[sig-api-machinery] AggregatedDiscovery should support aggregated discovery interface for CRDs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:04Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:b13d00c969 namespace:e2e-cronjob-5119 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:failed-jobs-history-limit-29279942-n9k4l]}" message="{BackOff Back-off restarting failed container c in pod failed-jobs-history-limit-29279942-n9k4l_e2e-cronjob-5119(0a1d0d5f-400b-4d7e-93ee-e7df602437fe) map[count:2 firstTimestamp:2025-09-02T07:02:03Z lastTimestamp:2025-09-02T07:02:04Z reason:BackOff]}" +passed: (700ms) 2025-09-02T07:02:05 "[sig-node] PodTemplates should delete a collection of pod templates [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/236/767 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] should include custom resource definition resources in discovery documents [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.6s) 2025-09-02T07:02:06 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST NOT fail to update a resource due to JSONSchema errors on unchanged correlatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/237/767 "[sig-node] Pods should be updated [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:06Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:a744c2ed6c namespace:e2e-statefulset-8599 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss3-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.96:80/index.html\": dial tcp 10.131.0.96:80: connect: connection refused map[firstTimestamp:2025-09-02T07:02:06Z lastTimestamp:2025-09-02T07:02:06Z reason:Unhealthy]}" +passed: (37.3s) 2025-09-02T07:02:06 "[sig-network] Services should fallback to local terminating endpoints when there are no ready endpoints with internalTrafficPolicy=Local [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/238/767 "[sig-network] Services should be rejected when no endpoints exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:02:06 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] should include custom resource definition resources in discovery documents [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/239/767 "[sig-apps] Job should allow to use a pod failure policy to ignore failure matching on exit code [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:02:08 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod with memory requests + limits - decrease memory limit [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/240/767 "[sig-node] Security Context should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (11.3s) 2025-09-02T07:02:08 "[sig-network] Services should serve multiport endpoints from pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/241/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers container stats validation [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:02:08 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy nil in SecurityContext when if the container's primary UID belongs to some groups in the image when scheduled node supports SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/242/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy based on PodSelector and NamespaceSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.7s) 2025-09-02T07:02:09 "[sig-api-machinery] AggregatedDiscovery should support aggregated discovery interface for CRDs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/243/767 "[sig-api-machinery] AggregatedDiscovery should support raw aggregated discovery request for CRDs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:02:09 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers container stats validation [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/244/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy to allow ingress traffic for a target [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-6704 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:busybox-sidecar-873f3197-f2b0-4ec6-b78d-0a62d43b0094]}" message="{Unhealthy Readiness probe failed: command timed out map[count:2 firstTimestamp:2025-09-02T07:01:59Z lastTimestamp:2025-09-02T07:02:09Z reason:Unhealthy]}" +time="2025-09-02T07:02:10Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:11 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:02:10Z reason:Unhealthy]}" +passed: (3s) 2025-09-02T07:02:10 "[sig-node] Pods should be updated [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/245/767 "[sig-node] Security Context when creating containers with AllowPrivilegeEscalation should allow privilege escalation when not explicitly set and uid != 0 [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m9s) 2025-09-02T07:02:10 "[sig-apps] CronJob should delete failed finished jobs with limit of one job [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/246/767 "[sig-apps] CronJob should remove from active list jobs that have been deleted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.9s) 2025-09-02T07:02:10 "[sig-network] Services should be rejected when no endpoints exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/247/767 "[sig-node] Containers should be able to override the image's default command and arguments [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:02:10 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should not delete PVCs when there is another controller [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/248/767 "[sig-network] LoadBalancers [Feature:LoadBalancer] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on the same nodes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.7s) 2025-09-02T07:02:11 "[sig-cli] Kubectl client Simple pod should return command exit codes execing into a container with a failing command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/249/767 "[sig-apps] Job should delete pods when suspended [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (40.9s) 2025-09-02T07:02:11 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs after adopting pod (WhenDeleted) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/250/767 "[sig-cli] Kubectl client Update Demo should scale a replication controller [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (48.7s) 2025-09-02T07:02:12 "[sig-network] Networking Granular Checks: Services should function for client IP based session affinity: udp [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/251/767 "[sig-instrumentation] Metrics should grab all metrics from kubelet /metrics/resource endpoint [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:02:13 "[sig-node] Security Context should support container.SecurityContext.RunAsUser And container.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/252/767 "[sig-api-machinery] FieldValidation should detect unknown metadata fields of a typed object [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:02:13 "[sig-api-machinery] AggregatedDiscovery should support raw aggregated discovery request for CRDs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/253/767 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 that expects a client request should support a client that connects, sends NO DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (800ms) 2025-09-02T07:02:14 "[sig-instrumentation] Metrics should grab all metrics from kubelet /metrics/resource endpoint [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/254/767 "[sig-apps] CronJob should replace jobs when ReplaceConcurrent [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:02:15 "[sig-api-machinery] FieldValidation should detect unknown metadata fields of a typed object [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/255/767 "[sig-node] Secrets should patch a secret [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5s) 2025-09-02T07:02:16 "[sig-node] Containers should be able to override the image's default command and arguments [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/256/767 "[sig-node] Downward API should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:02:16 "[sig-node] Secrets should patch a secret [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/257/767 "[sig-node] Pods should patch a pod status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:02:18 "[sig-node] Security Context when creating containers with AllowPrivilegeEscalation should allow privilege escalation when not explicitly set and uid != 0 [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/258/767 "[sig-cli] kubectl debug custom profile should be applied on static profiles while copying from pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.1s) 2025-09-02T07:02:19 "[sig-apps] Job should delete pods when suspended [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/259/767 "[sig-node] Mount propagation should propagate mounts within defined scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-6704 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:busybox-sidecar-873f3197-f2b0-4ec6-b78d-0a62d43b0094]}" message="{Unhealthy Readiness probe failed: command timed out map[count:3 firstTimestamp:2025-09-02T07:01:59Z lastTimestamp:2025-09-02T07:02:19Z reason:Unhealthy]}" +time="2025-09-02T07:02:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:12 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:02:20Z reason:Unhealthy]}" +time="2025-09-02T07:02:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:35c0189e87 namespace:e2e-container-probe-8887 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:test-webserver-sidecar-1a4b4d7c-7476-43aa-893a-359256a84a51]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.69:81/\": dial tcp 10.130.2.69:81: connect: connection refused map[count:13 firstTimestamp:2025-09-02T07:00:55Z lastTimestamp:2025-09-02T07:02:21Z reason:Unhealthy]}" +passed: (4.6s) 2025-09-02T07:02:22 "[sig-node] Downward API should provide default limits.cpu/memory from node allocatable [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/260/767 "[sig-apps] Job should fail when exceeds active deadline [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:02:22 "[sig-node] Pods should patch a pod status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/261/767 "[sig-api-machinery] Garbage collector should delete RS created by deployment when not orphaning [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:23Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:23Z reason:Unhealthy]}" +passed: (8.9s) 2025-09-02T07:02:23 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 that expects a client request should support a client that connects, sends NO DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/262/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate pod and apply defaults after mutation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:24Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:24Z reason:Unhealthy]}" +passed: (1.2s) 2025-09-02T07:02:24 "[sig-api-machinery] Garbage collector should delete RS created by deployment when not orphaning [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/263/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU limits only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:25Z reason:Unhealthy]}" +time="2025-09-02T07:02:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:25Z reason:Unhealthy]}" +time="2025-09-02T07:02:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:26Z reason:Unhealthy]}" +time="2025-09-02T07:02:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:27Z reason:Unhealthy]}" +passed: (4.6s) 2025-09-02T07:02:27 "[sig-apps] Job should fail when exceeds active deadline [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/264/767 "[sig-cli] Kubectl client Kubectl server-side dry-run should check if kubectl can dry-run update Pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:28Z reason:Unhealthy]}" +time="2025-09-02T07:02:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:29Z reason:Unhealthy]}" +time="2025-09-02T07:02:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-6704 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:busybox-sidecar-873f3197-f2b0-4ec6-b78d-0a62d43b0094]}" message="{Unhealthy Readiness probe failed: command timed out map[count:4 firstTimestamp:2025-09-02T07:01:59Z lastTimestamp:2025-09-02T07:02:29Z reason:Unhealthy]}" +time="2025-09-02T07:02:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:30Z reason:Unhealthy]}" +passed: (12.4s) 2025-09-02T07:02:31 "[sig-cli] kubectl debug custom profile should be applied on static profiles while copying from pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/265/767 "[sig-network] ServiceCIDR and IPAddress API should support IPAddress API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:31Z reason:Unhealthy]}" +passed: (2.7s) 2025-09-02T07:02:31 "[sig-cli] Kubectl client Kubectl server-side dry-run should check if kubectl can dry-run update Pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/266/767 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart https hook properly [MinimumKubeletVersion:1.23] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:02:32 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate pod and apply defaults after mutation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/267/767 "[sig-cli] kubectl debug custom profile should be applied on static profiles on ephemeral container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:32Z reason:Unhealthy]}" +passed: (1m1s) 2025-09-02T07:02:33 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should not be ready with an exec readiness probe timeout [MinimumKubeletVersion:1.20] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/268/767 "[sig-network] EndpointSlice should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:02:33 "[sig-network] ServiceCIDR and IPAddress API should support IPAddress API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/269/767 "[sig-cli] Kubectl client Kubectl diff should check if kubectl diff finds a difference for Deployments [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:33Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:33Z reason:Unhealthy]}" +time="2025-09-02T07:02:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:34Z reason:Unhealthy]}" +time="2025-09-02T07:02:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f08aa727d7 namespace:e2e-container-probe-6704 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:busybox-sidecar-873f3197-f2b0-4ec6-b78d-0a62d43b0094]}" message="{Unhealthy Readiness probe failed: command timed out map[count:5 firstTimestamp:2025-09-02T07:01:59Z lastTimestamp:2025-09-02T07:02:34Z reason:Unhealthy]}" +passed: (1m1s) 2025-09-02T07:02:34 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs with a OnScaledown policy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/270/767 "[sig-auth] ServiceAccounts ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (22.3s) 2025-09-02T07:02:34 "[sig-cli] Kubectl client Update Demo should scale a replication controller [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/271/767 "[sig-api-machinery] OpenAPIV3 should round trip OpenAPI V3 for all built-in group versions [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.2s) 2025-09-02T07:02:35 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy based on PodSelector and NamespaceSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/272/767 "[sig-apps] Deployment deployment should support proportional scaling [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.1s) 2025-09-02T07:02:35 "[sig-cli] Kubectl client Kubectl diff should check if kubectl diff finds a difference for Deployments [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/273/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource with pruning [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:35Z reason:Unhealthy]}" +time="2025-09-02T07:02:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:d947662004 namespace:e2e-statefulset-8599 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss3-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.84:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:02:36Z lastTimestamp:2025-09-02T07:02:36Z reason:Unhealthy]}" +time="2025-09-02T07:02:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:36Z reason:Unhealthy]}" +time="2025-09-02T07:02:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:37Z reason:Unhealthy]}" +passed: (1.7s) 2025-09-02T07:02:38 "[sig-api-machinery] OpenAPIV3 should round trip OpenAPI V3 for all built-in group versions [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/274/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a pod. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:c7f6592c1d namespace:e2e-statefulset-8599 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss3-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.96:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:02:38Z lastTimestamp:2025-09-02T07:02:38Z reason:Unhealthy]}" +time="2025-09-02T07:02:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:38Z reason:Unhealthy]}" +passed: (18.4s) 2025-09-02T07:02:38 "[sig-node] Mount propagation should propagate mounts within defined scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/275/767 "[sig-apps] Job should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:02:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:39Z reason:Unhealthy]}" +time="2025-09-02T07:02:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:40Z reason:Unhealthy]}" +time="2025-09-02T07:02:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:41Z reason:Unhealthy]}" +time="2025-09-02T07:02:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:42Z reason:Unhealthy]}" +passed: (32.2s) 2025-09-02T07:02:42 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy to allow ingress traffic for a target [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/276/767 "[sig-network] Netpol NetworkPolicy between server and client should deny ingress access to updated pod [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:43Z reason:Unhealthy]}" +passed: (10.8s) 2025-09-02T07:02:43 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart https hook properly [MinimumKubeletVersion:1.23] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/277/767 "[sig-network] Proxy version v1 should proxy logs on node using proxy subresource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:44Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:44Z reason:Unhealthy]}" +passed: (1m2s) 2025-09-02T07:02:44 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications for partiton1 and delete pod-0 with failing container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/278/767 "[sig-scheduling] LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.8s) 2025-09-02T07:02:45 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource with pruning [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/279/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should support various volume mount types [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:45Z reason:Unhealthy]}" +passed: (1.7s) 2025-09-02T07:02:46 "[sig-network] Proxy version v1 should proxy logs on node using proxy subresource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/280/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should have monotonically increasing restart count [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:02:23Z lastTimestamp:2025-09-02T07:02:46Z reason:Unhealthy]}" +passed: (13.3s) 2025-09-02T07:02:46 "[sig-cli] kubectl debug custom profile should be applied on static profiles on ephemeral container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/281/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory requests and limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:02:46 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should support various volume mount types [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/282/767 "[sig-cli] Kubectl client Kubectl events should show event when pod is created [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:46Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-6882 pod:test-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:02:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pod-no-resources]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:02:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pod-partial-resources]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:02:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pod-no-resources]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:02:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pod-partial-resources]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:02:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pod-no-resources]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:02:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pod-partial-resources]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (22s) 2025-09-02T07:02:47 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU limits only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/283/767 "[sig-windows] Services should be able to create a functioning NodePort service for Windows [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:02:48 "[sig-windows] Services should be able to create a functioning NodePort service for Windows [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/284/767 "[sig-apps] Job with successPolicy succeededIndexes rule should succeeded even when some indexes remain pending [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (15.3s) 2025-09-02T07:02:49 "[sig-network] EndpointSlice should create Endpoints and EndpointSlices for Pods matching a Service [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/285/767 "[sig-cli] Kubectl logs all pod logs the Deployment has 2 replicas and each pod has 2 containers should get logs from each pod and each container in Deployment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.8s) 2025-09-02T07:02:52 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a pod. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/286/767 "[sig-instrumentation] Events should manage the lifecycle of an event [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m32s) 2025-09-02T07:02:53 "[sig-node] Probing container should mark readiness on pods to false and disable liveness probes while pod is in progress of terminating [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/287/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU requests and decrease CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.1s) 2025-09-02T07:02:53 "[sig-cli] Kubectl client Kubectl events should show event when pod is created [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/288/767 "[sig-network] Netpol NetworkPolicy between server and client should properly isolate pods that are selected by a policy allowing SCTP, even if the plugin doesn't support SCTP [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:02:54 "[sig-apps] Job with successPolicy succeededIndexes rule should succeeded even when some indexes remain pending [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/289/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce multiple ingress policies with ingress allow-all policy taking precedence [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:02:54Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3294bb1ac8 namespace:e2e-limitrange-4743 pod:pfpod2]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient ephemeral-storage. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (8s) 2025-09-02T07:02:54 "[sig-scheduling] LimitRange should create a LimitRange with defaults and ensure pod has those defaults applied. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/290/767 "[sig-node] Pods should support remote command execution over websockets [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.1s) 2025-09-02T07:02:55 "[sig-cli] Kubectl logs all pod logs the Deployment has 2 replicas and each pod has 2 containers should get logs from each pod and each container in Deployment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/291/767 "[sig-network] LoadBalancers [Feature:LoadBalancer] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on different nodes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.9s) 2025-09-02T07:02:55 "[sig-instrumentation] Events should manage the lifecycle of an event [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/292/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate configmap [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:02:58 "[sig-node] Pods should support remote command execution over websockets [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/293/767 "[sig-cli] Kubectl client Simple pod should return command exit codes should support port-forward [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.3s) 2025-09-02T07:03:00 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU requests and decrease CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/294/767 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with containers running as CONTAINERADMINISTRATOR when runAsNonRoot is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.3s) 2025-09-02T07:03:01 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory requests and limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/295/767 "[sig-scheduling] LimitRange should list, patch and delete a LimitRange by collection [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + + I0902 07:03:01.582419 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (25.3s) 2025-09-02T07:03:01 "[sig-apps] Deployment deployment should support proportional scaling [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/296/767 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Setting .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:03:02 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with containers running as CONTAINERADMINISTRATOR when runAsNonRoot is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/297/767 "[sig-cli] Kubectl client Simple pod should support exec using resource/name [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (54.9s) 2025-09-02T07:03:02 "[sig-apps] Job should allow to use a pod failure policy to ignore failure matching on exit code [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/298/767 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart exec hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.2s) 2025-09-02T07:03:03 "[sig-scheduling] LimitRange should list, patch and delete a LimitRange by collection [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/299/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's multiple priority class scope (quota set to pod count: 2) against 2 pods with same priority classes. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:03:04 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate configmap [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/300/767 "[sig-api-machinery] Watchers should receive events on concurrent watches in same order [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (24.8s) 2025-09-02T07:03:04 "[sig-apps] Job should run a job to completion when tasks sometimes fail and are locally restarted [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/301/767 "[sig-network] Services should be able to change the type from ExternalName to NodePort [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:03:07Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-8651 pod:testpod-pclass5]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:03:09Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-8651 pod:testpod-pclass6]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (3.3s) 2025-09-02T07:03:09 "[sig-api-machinery] Watchers should receive events on concurrent watches in same order [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/302/767 "[sig-api-machinery] Aggregator Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m31s) 2025-09-02T07:03:10 "[sig-network] Networking Granular Checks: Services should function for node-Service: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/303/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to create and update validating webhook configurations with match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.8s) 2025-09-02T07:03:12 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart exec hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/304/767 "[sig-node] Container Runtime blackbox test when running a container with a new image should be able to pull image [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.8s) 2025-09-02T07:03:13 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's multiple priority class scope (quota set to pod count: 2) against 2 pods with same priority classes. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/305/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource definition that contains a x-kubernetes-validations rule that refers to a property that do not exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.7s) 2025-09-02T07:03:14 "[sig-network] Services should be able to change the type from ExternalName to NodePort [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/306/767 "[sig-node] Security Context When creating a container with runAsNonRoot should not run with an explicit root user ID [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:03:15 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource definition that contains a x-kubernetes-validations rule that refers to a property that do not exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/307/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications for partiton1 and delete pod-0 without failing container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (16.2s) 2025-09-02T07:03:15 "[sig-cli] Kubectl client Simple pod should return command exit codes should support port-forward [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/308/767 "[sig-apps] DisruptionController Listing PodDisruptionBudgets for all namespaces should list and delete a collection of PodDisruptionBudgets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2m39s) 2025-09-02T07:03:15 "[sig-network] Networking Granular Checks: Services should update endpoints: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/309/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.2s) 2025-09-02T07:03:16 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to create and update validating webhook configurations with match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/310/767 "[sig-node] Lifecycle Sleep Hook when create a pod with lifecycle hook using sleep action reduce GracePeriodSeconds during runtime [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.2s) 2025-09-02T07:03:17 "[sig-network] Netpol NetworkPolicy between server and client should deny ingress access to updated pod [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/311/767 "[sig-windows] [Feature:Windows] SecurityContext should ignore Linux Specific SecurityContext if set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:03:17 "[sig-node] Container Runtime blackbox test when running a container with a new image should be able to pull image [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/312/767 "[sig-api-machinery] Garbage collector should delete jobs and pods created by cronjob [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.3s) 2025-09-02T07:03:18 "[sig-network] Netpol NetworkPolicy between server and client should properly isolate pods that are selected by a policy allowing SCTP, even if the plugin doesn't support SCTP [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/313/767 "[sig-apps] ReplicationController should get and update a ReplicationController scale [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:03:18 "[sig-windows] [Feature:Windows] SecurityContext should ignore Linux Specific SecurityContext if set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/314/767 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.3s) 2025-09-02T07:03:18 "[sig-apps] DisruptionController Listing PodDisruptionBudgets for all namespaces should list and delete a collection of PodDisruptionBudgets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/315/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy based on Ports [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (42.9s) 2025-09-02T07:03:19 "[sig-auth] ServiceAccounts ServiceAccountIssuerDiscovery should support OIDC discovery of service account issuer [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/316/767 "[sig-apps] DisruptionController evictions: too few pods, absolute => should not allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:19Z" level=info msg="event interval matches E2ESecurityContextBreaksNonRootPolicy" locator="{Kind map[hmsg:f967716b4a namespace:e2e-security-context-test-4683 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:explicit-root-uid]}" message="{Failed Error: container's runAsUser breaks non-root policy (pod: \"explicit-root-uid_e2e-security-context-test-4683(6424b531-d31d-4807-9e1a-151071165e59)\", container: explicit-root-uid) map[firstTimestamp:2025-09-02T07:03:19Z lastTimestamp:2025-09-02T07:03:19Z reason:Failed]}" +time="2025-09-02T07:03:19Z" level=info msg="event interval matches E2ESecurityContextBreaksNonRootPolicy" locator="{Kind map[hmsg:f967716b4a namespace:e2e-security-context-test-4683 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:explicit-root-uid]}" message="{Failed Error: container's runAsUser breaks non-root policy (pod: \"explicit-root-uid_e2e-security-context-test-4683(6424b531-d31d-4807-9e1a-151071165e59)\", container: explicit-root-uid) map[count:2 firstTimestamp:2025-09-02T07:03:19Z lastTimestamp:2025-09-02T07:03:19Z reason:Failed]}" +passed: (4.5s) 2025-09-02T07:03:20 "[sig-node] Security Context When creating a container with runAsNonRoot should not run with an explicit root user ID [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/317/767 "[sig-node] Probing container should be restarted by liveness probe after startup probe enables it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m9s) 2025-09-02T07:03:21 "[sig-network] LoadBalancers [Feature:LoadBalancer] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on the same nodes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/318/767 "[sig-apps] DisruptionController should block an eviction until the PDB is updated to allow it [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (18.1s) 2025-09-02T07:03:21 "[sig-cli] Kubectl client Simple pod should support exec using resource/name [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/319/767 "[sig-node] ConfigMap should run through a ConfigMap lifecycle [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:03:22 "[sig-apps] ReplicationController should get and update a ReplicationController scale [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/320/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests - increase cpu request [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:03:23 "[sig-node] ConfigMap should run through a ConfigMap lifecycle [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/321/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should mark readiness on pods to false while pod is in progress of terminating when a pod has a readiness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:03:23 "[sig-apps] DisruptionController evictions: too few pods, absolute => should not allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/322/767 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should support ValidatingAdmissionPolicyBinding API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:03:24 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/323/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - increase CPU (NotRequired) & memory (RestartContainer) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1s) 2025-09-02T07:03:25 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should support ValidatingAdmissionPolicyBinding API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/324/767 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with unknown usernames at Container level [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:03:26 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with unknown usernames at Container level [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/325/767 "[sig-cli] Kubectl Port forwarding Shutdown client connection while the remote stream is writing data to the port-forward connection port-forward should keep working after detect broken connection [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:a387d9c801 namespace:e2e-statefulset-4340 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.122:80/index.html\": dial tcp 10.129.2.122:80: connect: connection refused map[firstTimestamp:2025-09-02T07:03:27Z lastTimestamp:2025-09-02T07:03:27Z reason:Unhealthy]}" +passed: (5.4s) 2025-09-02T07:03:28 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests - increase cpu request [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/326/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce egress policy allowing traffic to a server in a different namespace based on PodSelector and NamespaceSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:512a71be69 namespace:e2e-statefulset-4340 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.129:80/index.html\": read tcp 10.131.0.2:47062->10.131.0.129:80: read: connection reset by peer map[firstTimestamp:2025-09-02T07:03:31Z lastTimestamp:2025-09-02T07:03:31Z reason:Unhealthy]}" +time="2025-09-02T07:03:33Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:a1b54130d1 namespace:e2e-statefulset-4340 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.129:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:03:33Z lastTimestamp:2025-09-02T07:03:33Z reason:Unhealthy]}" +passed: (11.2s) 2025-09-02T07:03:33 "[sig-apps] DisruptionController should block an eviction until the PDB is updated to allow it [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/327/767 "[sig-node] Security Context When creating a pod with readOnlyRootFilesystem should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (31s) 2025-09-02T07:03:33 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Setting .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/328/767 "[sig-network] Conntrack proxy implementation should not be vulnerable to the invalid conntrack state bug [Privileged] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:34Z" level=info msg="event interval matches E2ESecurityContextBreaksNonRootPolicy" locator="{Kind map[hmsg:f967716b4a namespace:e2e-security-context-test-4683 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:explicit-root-uid]}" message="{Failed Error: container's runAsUser breaks non-root policy (pod: \"explicit-root-uid_e2e-security-context-test-4683(6424b531-d31d-4807-9e1a-151071165e59)\", container: explicit-root-uid) map[count:3 firstTimestamp:2025-09-02T07:03:19Z lastTimestamp:2025-09-02T07:03:34Z reason:Failed]}" +passed: (25.9s) 2025-09-02T07:03:36 "[sig-api-machinery] Aggregator Should be able to support the 1.17 Sample API Server using the current Aggregator [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/329/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform rolling updates and roll backs of template modifications [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (41.9s) 2025-09-02T07:03:37 "[sig-network] Netpol NetworkPolicy between server and client should enforce multiple ingress policies with ingress allow-all policy taking precedence [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/330/767 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart http hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:38Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:d04e893221 namespace:e2e-statefulset-4340 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss2-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.128.2.115:80/index.html\": dial tcp 10.128.2.115:80: connect: connection refused map[firstTimestamp:2025-09-02T07:03:38Z lastTimestamp:2025-09-02T07:03:38Z reason:Unhealthy]}" +passed: (1m28s) 2025-09-02T07:03:39 "[sig-apps] CronJob should remove from active list jobs that have been deleted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/331/767 "[sig-node] Container Runtime blackbox test when running a container with a new image should not be able to pull from private registry without secret [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:40Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:3f722c2a91 namespace:e2e-container-probe-3672 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:liveness-8463b618-327b-46ea-a66c-a9808c1a5f81]}" message="{BackOff Back-off restarting failed container agnhost-container in pod liveness-8463b618-327b-46ea-a66c-a9808c1a5f81_e2e-container-probe-3672(6ec844a8-ab5b-4cb4-bd64-a43edbc71eda) map[firstTimestamp:2025-09-02T07:03:40Z lastTimestamp:2025-09-02T07:03:40Z reason:BackOff]}" +passed: (20.2s) 2025-09-02T07:03:40 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy based on Ports [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/332/767 "[sig-cli] Kubectl logs all pod logs the Deployment has 2 replicas and each pod has 2 containers should get logs from all pods based on default container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:41Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:3f722c2a91 namespace:e2e-container-probe-3672 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:liveness-8463b618-327b-46ea-a66c-a9808c1a5f81]}" message="{BackOff Back-off restarting failed container agnhost-container in pod liveness-8463b618-327b-46ea-a66c-a9808c1a5f81_e2e-container-probe-3672(6ec844a8-ab5b-4cb4-bd64-a43edbc71eda) map[count:2 firstTimestamp:2025-09-02T07:03:40Z lastTimestamp:2025-09-02T07:03:41Z reason:BackOff]}" +passed: (6.5s) 2025-09-02T07:03:41 "[sig-node] Security Context When creating a pod with readOnlyRootFilesystem should run the container with writable rootfs when readOnlyRootFilesystem=false [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/333/767 "[sig-node] Variable Expansion should allow substituting values in a container's command [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (15.2s) 2025-09-02T07:03:42 "[sig-cli] Kubectl Port forwarding Shutdown client connection while the remote stream is writing data to the port-forward connection port-forward should keep working after detect broken connection [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/334/767 "[sig-node] RuntimeClass should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:03:43Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:5b0ee5263b namespace:e2e-container-runtime-9254 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:image-pull-testa2eb2e6d-5a66-48ec-87cf-a7a22b4b51b2]}" message="{BackOff Back-off pulling image \"gcr.io/authenticated-image-pulling/alpine:3.7\" map[firstTimestamp:2025-09-02T07:03:43Z lastTimestamp:2025-09-02T07:03:43Z reason:BackOff]}" +passed: (600ms) 2025-09-02T07:03:44 "[sig-node] RuntimeClass should schedule a Pod requesting a RuntimeClass and initialize its Overhead [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/335/767 "[sig-network] Conntrack should be able to preserve UDP traffic when initial unready endpoints get ready [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.6s) 2025-09-02T07:03:44 "[sig-node] Container Runtime blackbox test when running a container with a new image should not be able to pull from private registry without secret [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/336/767 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] custom resource defaulting for requests and from storage works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:03:44Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:5b0ee5263b namespace:e2e-container-runtime-9254 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:image-pull-testa2eb2e6d-5a66-48ec-87cf-a7a22b4b51b2]}" message="{BackOff Back-off pulling image \"gcr.io/authenticated-image-pulling/alpine:3.7\" map[count:2 firstTimestamp:2025-09-02T07:03:43Z lastTimestamp:2025-09-02T07:03:44Z reason:BackOff]}" +passed: (3m8s) 2025-09-02T07:03:45 "[sig-apps] Deployment should not disrupt a cloud load-balancer's connectivity during rollout [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/337/767 "[sig-auth] ValidatingAdmissionPolicy can restrict access by-node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5s) 2025-09-02T07:03:46 "[sig-cli] Kubectl logs all pod logs the Deployment has 2 replicas and each pod has 2 containers should get logs from all pods based on default container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/338/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should mark readiness on pods to false and disable liveness probes while pod is in progress of terminating [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:03:46 "[sig-node] Variable Expansion should allow substituting values in a container's command [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/339/767 "[sig-auth] [Feature:NodeAuthorizer] Getting a secret for a workload the node has access to should succeed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:47Z" level=info msg="event interval matches E2ESecurityContextBreaksNonRootPolicy" locator="{Kind map[hmsg:f967716b4a namespace:e2e-security-context-test-4683 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:explicit-root-uid]}" message="{Failed Error: container's runAsUser breaks non-root policy (pod: \"explicit-root-uid_e2e-security-context-test-4683(6424b531-d31d-4807-9e1a-151071165e59)\", container: explicit-root-uid) map[count:4 firstTimestamp:2025-09-02T07:03:19Z lastTimestamp:2025-09-02T07:03:47Z reason:Failed]}" +passed: (4m7s) 2025-09-02T07:03:48 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a tcp:8080 liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/340/767 "[sig-windows] [Feature:Windows] SecurityContext should be able create pods and run containers with a given username [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:49Z reason:Unhealthy]}" +time="2025-09-02T07:03:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:2 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:49Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:03:49 "[sig-windows] [Feature:Windows] SecurityContext should be able create pods and run containers with a given username [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/341/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a configMap. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3.8s) 2025-09-02T07:03:49 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] custom resource defaulting for requests and from storage works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/342/767 "[sig-network] Services should support externalTrafficPolicy=Local for type=NodePort [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:fd5658f32b namespace:e2e-statefulset-5392 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss2-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.152:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:49Z reason:Unhealthy]}" +time="2025-09-02T07:03:49Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:97e55b7fa3 namespace:e2e-statefulset-5392 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.139:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:49Z reason:Unhealthy]}" +time="2025-09-02T07:03:50Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:3 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:50Z reason:Unhealthy]}" +passed: (2.6s) 2025-09-02T07:03:50 "[sig-auth] [Feature:NodeAuthorizer] Getting a secret for a workload the node has access to should succeed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/343/767 "[sig-network] Services should serve a basic endpoint from pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:03:51Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:4 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:51Z reason:Unhealthy]}" +passed: (5.2s) 2025-09-02T07:03:51 "[sig-auth] ValidatingAdmissionPolicy can restrict access by-node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/344/767 "[sig-apps] Deployment should run the lifecycle of a Deployment [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (25.7s) 2025-09-02T07:03:51 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - increase CPU (NotRequired) & memory (RestartContainer) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/345/767 "[sig-node] Variable Expansion should succeed in writing subpaths in container [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (12.8s) 2025-09-02T07:03:51 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart http hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/346/767 "[sig-node] PreStop should call prestop when killing a pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:03:52Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:5 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:52Z reason:Unhealthy]}" +passed: (4m3s) 2025-09-02T07:03:52 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted by liveness probe because startup probe delays it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/347/767 "[sig-node] NodeLease NodeLease the kubelet should create and update a lease in the kube-node-lease namespace [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:53Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:6 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:53Z reason:Unhealthy]}" +time="2025-09-02T07:03:53Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:3f722c2a91 namespace:e2e-container-probe-3672 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:liveness-8463b618-327b-46ea-a66c-a9808c1a5f81]}" message="{BackOff Back-off restarting failed container agnhost-container in pod liveness-8463b618-327b-46ea-a66c-a9808c1a5f81_e2e-container-probe-3672(6ec844a8-ab5b-4cb4-bd64-a43edbc71eda) map[count:3 firstTimestamp:2025-09-02T07:03:40Z lastTimestamp:2025-09-02T07:03:53Z reason:BackOff]}" +passed: (35.5s) 2025-09-02T07:03:53 "[sig-node] Lifecycle Sleep Hook when create a pod with lifecycle hook using sleep action reduce GracePeriodSeconds during runtime [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/348/767 "[sig-apps] Job should create pods with completion indexes for an Indexed Job [Feature:PodIndexLabel] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:54Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:7 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:54Z reason:Unhealthy]}" +time="2025-09-02T07:03:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:8 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:55Z reason:Unhealthy]}" +time="2025-09-02T07:03:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:9 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:56Z reason:Unhealthy]}" +passed: (27.3s) 2025-09-02T07:03:56 "[sig-network] Netpol NetworkPolicy between server and client should enforce egress policy allowing traffic to a server in a different namespace based on PodSelector and NamespaceSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/349/767 "[sig-network] DNS should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:03:57Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:10 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:57Z reason:Unhealthy]}" +passed: (7.1s) 2025-09-02T07:03:57 "[sig-network] Services should support externalTrafficPolicy=Local for type=NodePort [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/350/767 "[sig-node] Security Context should support seccomp unconfined on the container [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:03:58Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:11 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:58Z reason:Unhealthy]}" +time="2025-09-02T07:03:58Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:90bdfc42b6 namespace:e2e-statefulset-4340 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.127:80/index.html\": dial tcp 10.129.2.127:80: connect: connection refused map[firstTimestamp:2025-09-02T07:03:58Z lastTimestamp:2025-09-02T07:03:58Z reason:Unhealthy]}" +time="2025-09-02T07:03:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:12 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:03:59Z reason:Unhealthy]}" +time="2025-09-02T07:04:00Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:13 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:00Z reason:Unhealthy]}" +passed: (8.1s) 2025-09-02T07:04:00 "[sig-apps] Deployment should run the lifecycle of a Deployment [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/351/767 "[sig-cli] Kubectl client Kubectl cluster-info dump should check if cluster-info dump succeeds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (41.6s) 2025-09-02T07:04:00 "[sig-api-machinery] Garbage collector should delete jobs and pods created by cronjob [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/352/767 "[sig-auth] ServiceAccounts should mount projected service account token [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:01Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:14 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:01Z reason:Unhealthy]}" +time="2025-09-02T07:04:01Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:1b4a42f790 namespace:e2e-statefulset-4340 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.137:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:04:01Z lastTimestamp:2025-09-02T07:04:01Z reason:Unhealthy]}" +passed: (1m47s) 2025-09-02T07:04:01 "[sig-apps] CronJob should replace jobs when ReplaceConcurrent [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/353/767 "[sig-network] Services should be able to connect to terminating and unready endpoints if PublishNotReadyAddresses is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3m16s) 2025-09-02T07:04:01 "[sig-network] Networking Granular Checks: Services should function for multiple endpoint-Services with same selector [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/354/767 "[sig-api-machinery] Garbage collector should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + + I0902 07:04:01.956335 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +time="2025-09-02T07:04:02Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:15 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:02Z reason:Unhealthy]}" +passed: (38.1s) 2025-09-02T07:04:02 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should mark readiness on pods to false while pod is in progress of terminating when a pod has a readiness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/355/767 "[sig-network] EndpointSliceMirroring should mirror a custom Endpoints resource through create update and delete [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (9.8s) 2025-09-02T07:04:02 "[sig-node] PreStop should call prestop when killing a pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/356/767 "[sig-node] Pods should delete a collection of pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (11.1s) 2025-09-02T07:04:02 "[sig-network] Services should serve a basic endpoint from pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/357/767 "[sig-auth] Certificates API [Privileged:ClusterAdmin] should support building a client with a CSR [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.1s) 2025-09-02T07:04:02 "[sig-cli] Kubectl client Kubectl cluster-info dump should check if cluster-info dump succeeds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/358/767 "[sig-node] Pods Extended Pod Container Status should never report success for a pending container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:03Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:16 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:03Z reason:Unhealthy]}" +passed: (4.7s) 2025-09-02T07:04:03 "[sig-node] Security Context should support seccomp unconfined on the container [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/359/767 "[sig-windows] Hybrid cluster network for all supported CNIs should provide Internet connection and DNS for Windows containers [Feature:Networking-IPv4] [Feature:Networking-DNS] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.5s) 2025-09-02T07:04:03 "[sig-node] NodeLease NodeLease the kubelet should create and update a lease in the kube-node-lease namespace [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/360/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a non-local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:04Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:17 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:04Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:04:04 "[sig-network] EndpointSliceMirroring should mirror a custom Endpoints resource through create update and delete [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/361/767 "[sig-api-machinery] Garbage collector should support orphan deletion of custom resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:04:04 "[sig-windows] Hybrid cluster network for all supported CNIs should provide Internet connection and DNS for Windows containers [Feature:Networking-IPv4] [Feature:Networking-DNS] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/362/767 "[sig-cli] Kubectl client Kubectl validation should create/apply an invalid/valid CR with arbitrary-extra properties for CRD with partially-specified validation schema [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.5s) 2025-09-02T07:04:04 "[sig-api-machinery] Garbage collector should orphan RS created by deployment when deleteOptions.PropagationPolicy is Orphan [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/363/767 "[sig-node] Security Context should support pod.Spec.SecurityContext.RunAsUser [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:18 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:05Z reason:Unhealthy]}" +passed: (10.6s) 2025-09-02T07:04:05 "[sig-apps] Job should create pods with completion indexes for an Indexed Job [Feature:PodIndexLabel] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/364/767 "[sig-apps] ReplicaSet should validate Replicaset Status endpoints [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:06Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:19 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:06Z reason:Unhealthy]}" +passed: (4m3s) 2025-09-02T07:04:06 "[sig-node] Probing container should *not* be restarted with a /healthz http liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/365/767 "[sig-node] Lease lease API should be available [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.5s) 2025-09-02T07:04:06 "[sig-network] DNS should resolve DNS of partial qualified names for services [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/366/767 "[sig-node] Pods Extended Pod Container lifecycle evicted pods should be terminal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.9s) 2025-09-02T07:04:06 "[sig-auth] ServiceAccounts should mount projected service account token [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/367/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container with readiness probe should not be ready before initial delay and never restart [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:20 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:07Z reason:Unhealthy]}" +time="2025-09-02T07:04:08Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:03:49Z lastTimestamp:2025-09-02T07:04:08Z reason:Unhealthy]}" +time="2025-09-02T07:04:08Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:3f722c2a91 namespace:e2e-container-probe-3672 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:liveness-8463b618-327b-46ea-a66c-a9808c1a5f81]}" message="{BackOff Back-off restarting failed container agnhost-container in pod liveness-8463b618-327b-46ea-a66c-a9808c1a5f81_e2e-container-probe-3672(6ec844a8-ab5b-4cb4-bd64-a43edbc71eda) map[count:4 firstTimestamp:2025-09-02T07:03:40Z lastTimestamp:2025-09-02T07:04:08Z reason:BackOff]}" +passed: (23.2s) 2025-09-02T07:04:08 "[sig-network] Conntrack should be able to preserve UDP traffic when initial unready endpoints get ready [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/368/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should run as a process on the host/node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (52.3s) 2025-09-02T07:04:08 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications for partiton1 and delete pod-0 without failing container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/369/767 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Increasing .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:630a095a57 namespace:e2e-statefulset-5392 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.144:80/index.html\": dial tcp 10.131.0.144:80: connect: connection refused map[firstTimestamp:2025-09-02T07:04:09Z lastTimestamp:2025-09-02T07:04:09Z reason:Unhealthy]}" +passed: (900ms) 2025-09-02T07:04:09 "[sig-node] Lease lease API should be available [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/370/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policies to check ingress and egress policies can be controlled independently based on PodSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:04:09 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should run as a process on the host/node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/371/767 "[sig-api-machinery] health handlers should contain necessary checks [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:04:10 "[sig-node] Pods should delete a collection of pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/372/767 "[sig-cli] Kubectl client Kubectl apply apply set/view last-applied [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:04:10 "[sig-node] Security Context should support pod.Spec.SecurityContext.RunAsUser [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/373/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of different groups [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:10Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:9b243925dc namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.140:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:04:10Z lastTimestamp:2025-09-02T07:04:10Z reason:Unhealthy]}" +passed: (800ms) 2025-09-02T07:04:11 "[sig-api-machinery] health handlers should contain necessary checks [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/374/767 "[sig-apps] Job should run a job to completion when tasks succeed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.4s) 2025-09-02T07:04:11 "[sig-apps] ReplicaSet should validate Replicaset Status endpoints [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/375/767 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition creating/deleting custom resource definition objects works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:12Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:542ebc23ab namespace:e2e-pods-8292 pod:pod-terminate-status-1-2]}" message="{FailedScheduling running Bind plugin \"DefaultBinder\": pods \"pod-terminate-status-1-2\" not found map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (1.8s) 2025-09-02T07:04:13 "[sig-cli] Kubectl client Kubectl apply apply set/view last-applied [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/376/767 "[sig-network] Netpol NetworkPolicy between server and client should ensure an IP overlapping both IPBlock.CIDR and IPBlock.Except is allowed [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.5s) 2025-09-02T07:04:14 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition creating/deleting custom resource definition objects works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/377/767 "[sig-network] Services should not be able to connect to terminating and unready endpoints if PublishNotReadyAddresses is false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11s) 2025-09-02T07:04:14 "[sig-auth] Certificates API [Privileged:ClusterAdmin] should support building a client with a CSR [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/378/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should have a working scale subresource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:04:15Z reason:Unhealthy]}" +passed: (28.6s) 2025-09-02T07:04:18 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a configMap. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/379/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to JSONSchema errors on unchanged uncorrelatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:21cae81087 namespace:e2e-statefulset-5392 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.128.2.127:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:04:19Z lastTimestamp:2025-09-02T07:04:19Z reason:Unhealthy]}" +passed: (1m23s) 2025-09-02T07:04:20 "[sig-network] LoadBalancers [Feature:LoadBalancer] should be able to preserve UDP traffic when server pod cycles for a LoadBalancer service on different nodes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/380/767 "[sig-apps] Job should create pods for an Indexed job with completion indexes and specified hostname [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:20Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:3f722c2a91 namespace:e2e-container-probe-3672 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:liveness-8463b618-327b-46ea-a66c-a9808c1a5f81]}" message="{BackOff Back-off restarting failed container agnhost-container in pod liveness-8463b618-327b-46ea-a66c-a9808c1a5f81_e2e-container-probe-3672(6ec844a8-ab5b-4cb4-bd64-a43edbc71eda) map[count:5 firstTimestamp:2025-09-02T07:03:40Z lastTimestamp:2025-09-02T07:04:20Z reason:BackOff]}" +time="2025-09-02T07:04:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:a40992eee1 namespace:e2e-statefulset-5392 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.155:80/index.html\": read tcp 10.131.0.2:37622->10.131.0.155:80: read: connection reset by peer map[firstTimestamp:2025-09-02T07:04:21Z lastTimestamp:2025-09-02T07:04:21Z reason:Unhealthy]}" +passed: (1.6s) 2025-09-02T07:04:21 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to JSONSchema errors on unchanged uncorrelatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/381/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against a pod with same priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (16.1s) 2025-09-02T07:04:21 "[sig-cli] Kubectl client Kubectl validation should create/apply an invalid/valid CR with arbitrary-extra properties for CRD with partially-specified validation schema [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/382/767 "[sig-api-machinery] ServerSideApply should ignore conflict errors if force apply is used [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.7s) 2025-09-02T07:04:21 "[sig-apps] Job should run a job to completion when tasks succeed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/383/767 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should support sysctls [MinimumKubeletVersion:1.21] [Environment:NotInUserNS] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:04:23 "[sig-api-machinery] ServerSideApply should ignore conflict errors if force apply is used [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/384/767 "[sig-apps] CronJob should delete successful finished jobs with limit of one successful job [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m3s) 2025-09-02T07:04:24 "[sig-node] Probing container should be restarted by liveness probe after startup probe enables it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/385/767 "[sig-apps] Deployment should validate Deployment Status endpoints [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:2 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:04:25Z reason:Unhealthy]}" +time="2025-09-02T07:04:25Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-5903 pod:testpod-pclass1]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.7s) 2025-09-02T07:04:27 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should support sysctls [MinimumKubeletVersion:1.21] [Environment:NotInUserNS] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/386/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing validating webhooks should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:28Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:a596cf46d2 namespace:e2e-container-probe-6337 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347]}" message="{BackOff Back-off restarting failed container sidecar in pod test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347_e2e-container-probe-6337(f9f18aeb-ce21-4227-96b5-6c52f147da9f) map[firstTimestamp:2025-09-02T07:04:28Z lastTimestamp:2025-09-02T07:04:28Z reason:BackOff]}" +time="2025-09-02T07:04:28Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:a596cf46d2 namespace:e2e-container-probe-6337 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347]}" message="{BackOff Back-off restarting failed container sidecar in pod test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347_e2e-container-probe-6337(f9f18aeb-ce21-4227-96b5-6c52f147da9f) map[count:2 firstTimestamp:2025-09-02T07:04:28Z lastTimestamp:2025-09-02T07:04:28Z reason:BackOff]}" +passed: (1m11s) 2025-09-02T07:04:28 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform canary updates and phased rolling updates of template modifications [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/387/767 "[sig-network] Services should be rejected for evicted pods (no endpoints exist) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:29Z reason:Unhealthy]}" +passed: (6.7s) 2025-09-02T07:04:29 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against a pod with same priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/388/767 "[sig-api-machinery] Garbage collector should orphan pods created by rc if deleteOptions.OrphanDependents is nil [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3s) 2025-09-02T07:04:29 "[sig-apps] Deployment should validate Deployment Status endpoints [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/389/767 "[sig-node] Security Context When creating a pod with HostUsers must create the user namespace in the configured hostUID/hostGID range [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:29Z reason:Unhealthy]}" +time="2025-09-02T07:04:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:2 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:29Z reason:Unhealthy]}" +passed: (37.6s) 2025-09-02T07:04:30 "[sig-node] Variable Expansion should succeed in writing subpaths in container [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/390/767 "[sig-node] Security Context when if the container's primary UID belongs to some groups in the image [LinuxOnly] should add pod.Spec.SecurityContext.SupplementalGroups to them [LinuxOnly] in resultant supplementary groups for the container processes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:3 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:30Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/common/node/security_context.go:136]: node is not setup for userns with kubelet mappings: getsubids binary not found in PATH + +skipped: (500ms) 2025-09-02T07:04:30 "[sig-node] Security Context When creating a pod with HostUsers must create the user namespace in the configured hostUID/hostGID range [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/391/767 "[sig-node] ConfigMap should fail to create ConfigMap with empty key [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:4 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:31Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:04:32 "[sig-node] ConfigMap should fail to create ConfigMap with empty key [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/392/767 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop https hook properly [MinimumKubeletVersion:1.23] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:5 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:32Z reason:Unhealthy]}" +passed: (24.9s) 2025-09-02T07:04:33 "[sig-node] [Feature:SidecarContainers] Probing restartable init container with readiness probe should not be ready before initial delay and never restart [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/393/767 "[sig-network] Services should respect internalTrafficPolicy=Local Pod (hostNetwork: true) to Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:33Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:6 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:33Z reason:Unhealthy]}" +passed: (12.6s) 2025-09-02T07:04:33 "[sig-apps] Job should create pods for an Indexed job with completion indexes and specified hostname [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/394/767 "[sig-autoscaling] [Feature:HPA] Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 1 pod to 2 pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:7 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:34Z reason:Unhealthy]}" +time="2025-09-02T07:04:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:3 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:04:35Z reason:Unhealthy]}" +passed: (2m36s) 2025-09-02T07:04:35 "[sig-node] Probing container should have monotonically increasing restart count [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/395/767 "[sig-apps] Job should mark indexes as failed when the FailIndex action is matched in podFailurePolicy [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:8 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:35Z reason:Unhealthy]}" +passed: (7.2s) 2025-09-02T07:04:35 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing validating webhooks should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/396/767 "[sig-network] Networking Granular Checks: Services should function for pod-Service: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:04:36 "[sig-node] Security Context when if the container's primary UID belongs to some groups in the image [LinuxOnly] should add pod.Spec.SecurityContext.SupplementalGroups to them [LinuxOnly] in resultant supplementary groups for the container processes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/397/767 "[sig-cli] Kubectl Port forwarding with a pod being removed should stop port-forwarding [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:9 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:36Z reason:Unhealthy]}" +passed: (26.7s) 2025-09-02T07:04:36 "[sig-network] Netpol NetworkPolicy between server and client should enforce policies to check ingress and egress policies can be controlled independently based on PodSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/398/767 "[sig-apps] DisruptionController should create a PodDisruptionBudget [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (20.8s) 2025-09-02T07:04:37 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should have a working scale subresource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/399/767 "[sig-instrumentation] Events should delete a collection of events [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:10 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:37Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:04:38 "[sig-apps] DisruptionController should create a PodDisruptionBudget [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/400/767 "[sig-network] EndpointSlice should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:04:38 "[sig-instrumentation] Events should delete a collection of events [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/401/767 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart https hook properly [MinimumKubeletVersion:1.23] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:11 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:38Z reason:Unhealthy]}" +time="2025-09-02T07:04:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:2 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:39Z reason:Unhealthy]}" +passed: (27.5s) 2025-09-02T07:04:39 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for multiple CRDs of different groups [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/402/767 "[sig-node] Probing container with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:12 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:39Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:04:40 "[sig-network] EndpointSlice should create and delete Endpoints and EndpointSlices for a Service with a selector specified [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/403/767 "[sig-apps] DisruptionController should observe that the PodDisruptionBudget status is not updated for unmanaged pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:13 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:40Z reason:Unhealthy]}" +passed: (30.9s) 2025-09-02T07:04:40 "[sig-apps] StatefulSet Scaling StatefulSetStartOrdinal Increasing .start.ordinal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/404/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD preserving unknown fields at the schema root [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:41Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:a596cf46d2 namespace:e2e-container-probe-6337 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347]}" message="{BackOff Back-off restarting failed container sidecar in pod test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347_e2e-container-probe-6337(f9f18aeb-ce21-4227-96b5-6c52f147da9f) map[count:3 firstTimestamp:2025-09-02T07:04:28Z lastTimestamp:2025-09-02T07:04:41Z reason:BackOff]}" +passed: (1m7s) 2025-09-02T07:04:41 "[sig-network] Conntrack proxy implementation should not be vulnerable to the invalid conntrack state bug [Privileged] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/405/767 "[sig-auth] ServiceAccounts should allow opting out of API token automount [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:14 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:41Z reason:Unhealthy]}" +passed: (8.8s) 2025-09-02T07:04:41 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop https hook properly [MinimumKubeletVersion:1.23] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/406/767 "[sig-api-machinery] Servers with support for Table transformation should return a 406 for a backend which does not implement metadata [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:04:42Z reason:Unhealthy]}" +passed: (28s) 2025-09-02T07:04:42 "[sig-network] Netpol NetworkPolicy between server and client should ensure an IP overlapping both IPBlock.CIDR and IPBlock.Except is allowed [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/407/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - decrease init container memory requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:15 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:42Z reason:Unhealthy]}" +passed: (6.6s) 2025-09-02T07:04:43 "[sig-apps] Job should mark indexes as failed when the FailIndex action is matched in podFailurePolicy [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/408/767 "[sig-node] Security Context should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:43Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:04:43Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:04:43 "[sig-auth] ServiceAccounts should allow opting out of API token automount [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/409/767 "[sig-network] Netpol NetworkPolicy between server and client should not mistakenly treat 'protocol: SCTP' as 'protocol: TCP', even if the plugin doesn't support SCTP [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:04:43 "[sig-api-machinery] Servers with support for Table transformation should return a 406 for a backend which does not implement metadata [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/410/767 "[sig-node] RuntimeClass should support RuntimeClasses API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:16 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:43Z reason:Unhealthy]}" +passed: (9.9s) 2025-09-02T07:04:44 "[sig-network] Services should respect internalTrafficPolicy=Local Pod (hostNetwork: true) to Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/411/767 "[sig-cli] Kubectl client Simple pod should return command exit codes execing into a container with a successful command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.9s) 2025-09-02T07:04:44 "[sig-cli] Kubectl Port forwarding with a pod being removed should stop port-forwarding [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/412/767 "[sig-node] PrivilegedPod [NodeConformance] should enable privileged commands [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:44Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:3 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:04:44Z reason:Unhealthy]}" +time="2025-09-02T07:04:44Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:17 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:44Z reason:Unhealthy]}" +time="2025-09-02T07:04:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:4 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:04:45Z reason:Unhealthy]}" +passed: (1s) 2025-09-02T07:04:45 "[sig-node] RuntimeClass should support RuntimeClasses API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/413/767 "[sig-node] Security Context When creating a container with runAsNonRoot should not run without a specified user ID [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:18 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:45Z reason:Unhealthy]}" +time="2025-09-02T07:04:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:19 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:46Z reason:Unhealthy]}" +time="2025-09-02T07:04:47Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:20 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:47Z reason:Unhealthy]}" +passed: (3.2s) 2025-09-02T07:04:48 "[sig-node] PrivilegedPod [NodeConformance] should enable privileged commands [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/414/767 "[sig-node] RuntimeClass should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.7s) 2025-09-02T07:04:48 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute poststart https hook properly [MinimumKubeletVersion:1.23] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/415/767 "[sig-network] EndpointSlice should support creating EndpointSlice API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:48Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:48Z reason:Unhealthy]}" +time="2025-09-02T07:04:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:3 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:49Z reason:Unhealthy]}" +time="2025-09-02T07:04:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:22 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:49Z reason:Unhealthy]}" +time="2025-09-02T07:04:50Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:8ec7370a21 namespace:e2e-runtimeclass-3561 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-runtimeclass-e2e-runtimeclass-3561-preconfigured-handp48nt]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to find runtime handler test-handler from runtime list map[crun:0x400036ad80 runc:0x400036aa80] map[firstTimestamp:2025-09-02T07:04:50Z lastTimestamp:2025-09-02T07:04:50Z reason:FailedCreatePodSandBox]}" +passed: (700ms) 2025-09-02T07:04:50 "[sig-node] RuntimeClass should schedule a Pod requesting a RuntimeClass without PodOverhead [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/416/767 "[sig-windows] [Feature:Windows] Kubelet-Stats Kubelet stats collection for Windows nodes when windows is booted should return bootid within 10 seconds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (900ms) 2025-09-02T07:04:50 "[sig-network] EndpointSlice should support creating EndpointSlice API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/417/767 "[sig-network] DNS should provide DNS for pods for Hostname [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:04:50 "[sig-node] Security Context should support pod.Spec.SecurityContext.RunAsUser And pod.Spec.SecurityContext.RunAsGroup [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/418/767 "[sig-node] Kubelet when scheduling an agnhost Pod with hostAliases should write entries to /etc/hosts [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:04:51Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:dd41706667 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.154:80/index.html\": dial tcp 10.131.0.154:80: connect: connection refused map[firstTimestamp:2025-09-02T07:04:51Z lastTimestamp:2025-09-02T07:04:51Z reason:Unhealthy]}" +passed: (4.4s) 2025-09-02T07:04:51 "[sig-node] Security Context When creating a container with runAsNonRoot should not run without a specified user ID [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/419/767 "[sig-apps] ReplicaSet should adopt matching pods on creation and release no longer matching pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:04:51 "[sig-windows] [Feature:Windows] Kubelet-Stats Kubelet stats collection for Windows nodes when windows is booted should return bootid within 10 seconds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/420/767 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop http hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4m5s) 2025-09-02T07:04:52 "[sig-node] Probing container should *not* be restarted by liveness probe because startup probe delays it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/421/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to JSONSchema errors on changed fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4m6s) 2025-09-02T07:04:52 "[sig-node] Probing container should *not* be restarted with a non-local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/422/767 "[sig-apps] CronJob should not emit unexpected warnings [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:53Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:a596cf46d2 namespace:e2e-container-probe-6337 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347]}" message="{BackOff Back-off restarting failed container sidecar in pod test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347_e2e-container-probe-6337(f9f18aeb-ce21-4227-96b5-6c52f147da9f) map[count:4 firstTimestamp:2025-09-02T07:04:28Z lastTimestamp:2025-09-02T07:04:53Z reason:BackOff]}" +passed: (2.7s) 2025-09-02T07:04:54 "[sig-network] DNS should provide DNS for pods for Hostname [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/423/767 "[sig-cli] Kubectl client Simple pod should support inline execution and attach with websockets or fallback to spdy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:54Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:4 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:04:54Z reason:Unhealthy]}" +passed: (1.6s) 2025-09-02T07:04:55 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to JSONSchema errors on changed fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/424/767 "[sig-api-machinery] Server request timeout the request should be served with a default timeout if the specified timeout in the request URL exceeds maximum allowed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:5 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:04:55Z reason:Unhealthy]}" +passed: (400ms) 2025-09-02T07:04:56 "[sig-api-machinery] Server request timeout the request should be served with a default timeout if the specified timeout in the request URL exceeds maximum allowed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/425/767 "[sig-auth] ServiceAccounts should run through the lifecycle of a ServiceAccount [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:04:56 "[sig-node] Kubelet when scheduling an agnhost Pod with hostAliases should write entries to /etc/hosts [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/426/767 "[sig-api-machinery] AggregatedDiscovery should support raw aggregated discovery endpoint Accept headers [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.8s) 2025-09-02T07:04:56 "[sig-apps] ReplicaSet should adopt matching pods on creation and release no longer matching pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/427/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with an exec liveness probe with timeout [MinimumKubeletVersion:1.20] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.1s) 2025-09-02T07:04:56 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD preserving unknown fields at the schema root [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/428/767 "[sig-cli] Kubectl client Kubectl create quota should reject quota with invalid scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4m3s) 2025-09-02T07:04:57 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a GRPC liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/429/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - decrease init container CPU only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:04:58 "[sig-auth] ServiceAccounts should run through the lifecycle of a ServiceAccount [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/430/767 "[sig-network] DNS should support configurable pod DNS nameservers [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:04:58 "[sig-api-machinery] AggregatedDiscovery should support raw aggregated discovery endpoint Accept headers [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/431/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce ingress policy allowing any port traffic to a server on a specific protocol [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:04:58 "[sig-cli] Kubectl client Kubectl create quota should reject quota with invalid scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/432/767 "[sig-apps] DisruptionController should evict ready pods with AlwaysAllow UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:04:59 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop http hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/433/767 "[sig-auth] NodeAuthenticator The kubelet can delegate ServiceAccount tokens to the API server [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:04:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:4 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:04:59Z reason:Unhealthy]}" +passed: (55.7s) 2025-09-02T07:04:59 "[sig-node] Pods Extended Pod Container Status should never report success for a pending container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/434/767 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should type check a CRD [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:00Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:fe396fbeaf namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.194:80/index.html\": dial tcp 10.131.0.194:80: connect: connection refused map[firstTimestamp:2025-09-02T07:05:00Z lastTimestamp:2025-09-02T07:05:00Z reason:Unhealthy]}" +passed: (2.8s) 2025-09-02T07:05:01 "[sig-network] DNS should support configurable pod DNS nameservers [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/435/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one restartable init container - decrease CPU & increase memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:05:02.351886 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (1.7s) 2025-09-02T07:05:02 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should type check a CRD [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/436/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to CRD Validation Rule errors on unchanged uncorrelatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.4s) 2025-09-02T07:05:02 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - decrease init container memory requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/437/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - remove CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.8s) 2025-09-02T07:05:03 "[sig-cli] Kubectl client Simple pod should return command exit codes execing into a container with a successful command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/438/767 "[sig-network] Proxy version v1 A set of valid responses are returned for both pod and service Proxy [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (32.8s) 2025-09-02T07:05:03 "[sig-api-machinery] Garbage collector should orphan pods created by rc if deleteOptions.OrphanDependents is nil [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/439/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one restartable init container - increase CPU & memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:03Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:675ded4775 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.163:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:05:03Z lastTimestamp:2025-09-02T07:05:03Z reason:Unhealthy]}" +time="2025-09-02T07:05:04Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:edb7d8b6cc namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss2-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.2.202:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:05:04Z lastTimestamp:2025-09-02T07:05:04Z reason:Unhealthy]}" +time="2025-09-02T07:05:04Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:a596cf46d2 namespace:e2e-container-probe-6337 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347]}" message="{BackOff Back-off restarting failed container sidecar in pod test-liveness-sidecar-475416c3-436a-447e-aa12-a8f7e6177347_e2e-container-probe-6337(f9f18aeb-ce21-4227-96b5-6c52f147da9f) map[count:5 firstTimestamp:2025-09-02T07:04:28Z lastTimestamp:2025-09-02T07:05:04Z reason:BackOff]}" +time="2025-09-02T07:05:04Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:5 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:04Z reason:Unhealthy]}" +passed: (4.6s) 2025-09-02T07:05:04 "[sig-auth] NodeAuthenticator The kubelet can delegate ServiceAccount tokens to the API server [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/440/767 "[sig-node] Containers should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:6 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:05:05Z reason:Unhealthy]}" +passed: (1m3s) 2025-09-02T07:05:05 "[sig-network] Services should be able to connect to terminating and unready endpoints if PublishNotReadyAddresses is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/441/767 "[sig-node] Security Context When creating a container with runAsNonRoot should run with an explicit non-root user ID [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.7s) 2025-09-02T07:05:05 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to CRD Validation Rule errors on unchanged uncorrelatable fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/442/767 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs with a WhenDeleted policy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:07Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:36e2157c7c namespace:e2e-statefulset-880 pod:ss-0]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": Operation cannot be fulfilled on persistentvolumeclaims \"datadir-ss-0\": the object has been modified; please apply your changes to the latest version and try again map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (2.9s) 2025-09-02T07:05:07 "[sig-network] Proxy version v1 A set of valid responses are returned for both pod and service Proxy [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/443/767 "[sig-api-machinery] OpenAPIV3 should publish OpenAPI V3 for CustomResourceDefinition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:05:08 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - remove CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/444/767 "[sig-apps] DisruptionController should evict ready pods with Default UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:5 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:05:09Z reason:Unhealthy]}" +passed: (1m33s) 2025-09-02T07:05:10 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform rolling updates and roll backs of template modifications [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/445/767 "[sig-node] Security Context When creating a pod with HostUsers must not create the user namespace if set to true [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:05:10 "[sig-node] Containers should be able to override the image's default arguments (container cmd) [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/446/767 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with terminating scopes through scope selectors. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:05:11 "[sig-node] Security Context When creating a container with runAsNonRoot should run with an explicit non-root user ID [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/447/767 "[sig-apps] Job with successPolicy should succeeded when all indexes succeeded [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:05:12 "[sig-api-machinery] OpenAPIV3 should publish OpenAPI V3 for CustomResourceDefinition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/448/767 "[sig-node] Security Context When creating a pod with HostUsers should mount all volumes with proper permissions with hostUsers=false [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:14Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:6 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:14Z reason:Unhealthy]}" +time="2025-09-02T07:05:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:7 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:05:15Z reason:Unhealthy]}" +time="2025-09-02T07:05:16Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-scope-selectors-8113 pod:test-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (17.1s) 2025-09-02T07:05:16 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - decrease init container CPU only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/449/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] pod-resize-resource-quota-test [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m30s) 2025-09-02T07:05:17 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should have monotonically increasing restart count [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/450/767 "[sig-apps] DisruptionController should evict unready pods with AlwaysAllow UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/node/pod_resize.go:456]: runtime does not support InPlacePodVerticalScaling -- skipping + +skipped: (600ms) 2025-09-02T07:05:17 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] pod-resize-resource-quota-test [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/451/767 "[sig-network] IngressClass API should support creating IngressClass API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:05:18 "[sig-node] Security Context When creating a pod with HostUsers must not create the user namespace if set to true [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/452/767 "[sig-cli] Kubectl client Simple pod Kubectl run running a successful command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:05:18 "[sig-node] Security Context When creating a pod with HostUsers should mount all volumes with proper permissions with hostUsers=false [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/453/767 "[sig-apps] ReplicaSet Replace and Patch tests [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:05:18 "[sig-apps] Job with successPolicy should succeeded when all indexes succeeded [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/454/767 "[sig-api-machinery] Watchers should be able to restart watching from the last resource version observed by the previous watch [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:6 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:05:19Z reason:Unhealthy]}" +passed: (900ms) 2025-09-02T07:05:19 "[sig-network] IngressClass API should support creating IngressClass API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/455/767 "[sig-api-machinery] ResourceQuota should manage the lifecycle of a ResourceQuota [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (35.6s) 2025-09-02T07:05:20 "[sig-network] Netpol NetworkPolicy between server and client should not mistakenly treat 'protocol: SCTP' as 'protocol: TCP', even if the plugin doesn't support SCTP [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/456/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a custom resource. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m33s) 2025-09-02T07:05:20 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should mark readiness on pods to false and disable liveness probes while pod is in progress of terminating [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/457/767 "[sig-node] Security Context should support container.SecurityContext.RunAsUser [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (800ms) 2025-09-02T07:05:20 "[sig-api-machinery] Watchers should be able to restart watching from the last resource version observed by the previous watch [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/458/767 "[sig-api-machinery] Servers with support for Table transformation should return generic metadata details across all namespaces for nodes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4m4s) 2025-09-02T07:05:21 "[sig-node] Probing container should *not* be restarted with a tcp:8080 liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/459/767 "[sig-network] Networking Granular Checks: Services should be able to handle large requests: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m6s) 2025-09-02T07:05:21 "[sig-network] Services should not be able to connect to terminating and unready endpoints if PublishNotReadyAddresses is false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/460/767 "[sig-auth] Certificates API [Privileged:ClusterAdmin] should support CSR API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.1s) 2025-09-02T07:05:22 "[sig-api-machinery] ResourceQuota should manage the lifecycle of a ResourceQuota [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/461/767 "[sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile specified in annotations [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:05:23 "[sig-api-machinery] Servers with support for Table transformation should return generic metadata details across all namespaces for nodes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/462/767 "[sig-apps] Job should recreate pods only after they have failed if pod replacement policy is set to Failed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:24Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:7 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:24Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/framework/skipper/skipper.go:222]: Only supported for node OS distro [gci ubuntu] (not custom) + +skipped: (600ms) 2025-09-02T07:05:24 "[sig-node] AppArmor load AppArmor profiles should enforce an AppArmor profile specified in annotations [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/463/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should support querying api-server using in-cluster config [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:05:25 "[sig-node] Security Context should support container.SecurityContext.RunAsUser [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/464/767 "[sig-node] Kubelet with pods in a privileged namespace when scheduling an agnhost Pod with hostAliases and hostNetwork should write entries to /etc/hosts when hostNetwork is enabled [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:8 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:05:25Z reason:Unhealthy]}" +passed: (21.1s) 2025-09-02T07:05:25 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one restartable init container - increase CPU & memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/465/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with CPU requests + limits, cpu requests - remove memory requests [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:05:25 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers should support querying api-server using in-cluster config [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/466/767 "[sig-apps] Deployment test Deployment ReplicaSet orphaning and adoption regarding controllerRef [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:25Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:c43093d502 namespace:e2e-statefulset-880 pod:ss-1]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": Operation cannot be fulfilled on persistentvolumeclaims \"datadir-ss-1\": the object has been modified; please apply your changes to the latest version and try again map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (2.1s) 2025-09-02T07:05:26 "[sig-auth] Certificates API [Privileged:ClusterAdmin] should support CSR API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/467/767 "[sig-network] Services should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:26Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-scope-selectors-8113 pod:terminating-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (26.9s) 2025-09-02T07:05:26 "[sig-apps] DisruptionController should evict ready pods with AlwaysAllow UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/468/767 "[sig-cli] Kubectl client Kubectl run pod should create a pod from an image when restart is Never [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.2s) 2025-09-02T07:05:26 "[sig-apps] DisruptionController should evict unready pods with AlwaysAllow UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/469/767 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with containers running as ContainerAdministrator when runAsNonRoot is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.2s) 2025-09-02T07:05:27 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one restartable init container - decrease CPU & increase memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/470/767 "[sig-instrumentation] MetricsGrabber should grab all metrics slis from API server. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.8s) 2025-09-02T07:05:27 "[sig-apps] ReplicaSet Replace and Patch tests [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/471/767 "[sig-network] Networking Granular Checks: Services should be able to handle large requests: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:05:27 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with containers running as ContainerAdministrator when runAsNonRoot is true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/472/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a replication controller. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:05:28 "[sig-instrumentation] MetricsGrabber should grab all metrics slis from API server. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/473/767 "[sig-apps] Deployment iterative rollouts should eventually progress [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:7 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:05:29Z reason:Unhealthy]}" +passed: (2.1s) 2025-09-02T07:05:29 "[sig-cli] Kubectl client Kubectl run pod should create a pod from an image when restart is Never [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/474/767 "[sig-apps] Deployment RollingUpdateDeployment should delete old pods and create new ones [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (30.7s) 2025-09-02T07:05:29 "[sig-network] Netpol NetworkPolicy between server and client should enforce ingress policy allowing any port traffic to a server on a specific protocol [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/475/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny attaching pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (52.8s) 2025-09-02T07:05:30 "[sig-network] Networking Granular Checks: Services should function for pod-Service: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/476/767 "[sig-node] PodRejectionStatus Kubelet should reject pod when the node didn't have enough resource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:05:30 "[sig-node] Kubelet with pods in a privileged namespace when scheduling an agnhost Pod with hostAliases and hostNetwork should write entries to /etc/hosts when hostNetwork is enabled [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/477/767 "[sig-node] [Feature:KubeletFineGrainedAuthz] when calling kubelet API check /healthz enpoint is accessible via nodes/healthz RBAC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:05:31 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with CPU requests + limits, cpu requests - remove memory requests [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/478/767 "[sig-node] Ephemeral Containers [NodeConformance] should update the ephemeral containers in an existing pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:31Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:98a20b4ee7 namespace:e2e-pod-rejection-status-9525 pod:pod-out-of-cpu]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 Insufficient cpu. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (1m23s) 2025-09-02T07:05:31 "[sig-node] Pods Extended Pod Container lifecycle evicted pods should be terminal [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/479/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, three containers - increase c1 resources, no change for c2, decrease c3 resources (no net change for pod) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.1s) 2025-09-02T07:05:32 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with terminating scopes through scope selectors. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/480/767 "[sig-network] DNS should resolve DNS of partial qualified names for the cluster [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7s) 2025-09-02T07:05:33 "[sig-apps] Deployment test Deployment ReplicaSet orphaning and adoption regarding controllerRef [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/481/767 "[sig-node] Security Context When creating a container with runAsUser should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:34Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:8 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:34Z reason:Unhealthy]}" +passed: (3s) 2025-09-02T07:05:34 "[sig-node] [Feature:KubeletFineGrainedAuthz] when calling kubelet API check /healthz enpoint is accessible via nodes/healthz RBAC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/482/767 "[sig-node] ConfigMap should be consumable via environment variable [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:9 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:05:35Z reason:Unhealthy]}" +passed: (4.6s) 2025-09-02T07:05:35 "[sig-node] PodRejectionStatus Kubelet should reject pod when the node didn't have enough resource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/483/767 "[sig-node] Security Context When creating a container with runAsUser should run the container with uid 0 [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.2s) 2025-09-02T07:05:37 "[sig-network] Services should be able to switch session affinity for NodePort service [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/484/767 "[sig-cli] Kubectl client Kubectl validation should create/apply a valid CR for CRD with validation schema [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7s) 2025-09-02T07:05:37 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny attaching pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/485/767 "[sig-apps] StatefulSet AvailableReplicas should get updated accordingly when MinReadySeconds is enabled [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (18.6s) 2025-09-02T07:05:37 "[sig-cli] Kubectl client Simple pod Kubectl run running a successful command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/486/767 "[sig-apps] DisruptionController should update/patch PodDisruptionBudget status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.7s) 2025-09-02T07:05:38 "[sig-apps] Deployment RollingUpdateDeployment should delete old pods and create new ones [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/487/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with memory requests + limits, cpu requests - remove CPU requests [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (28.7s) 2025-09-02T07:05:38 "[sig-apps] DisruptionController should evict ready pods with Default UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/488/767 "[sig-node] Security Context should support seccomp runtime/default [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:05:38 "[sig-node] Ephemeral Containers [NodeConformance] should update the ephemeral containers in an existing pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/489/767 "[sig-network] Connectivity Pod Lifecycle should be able to connect from a Pod to a terminating Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:8 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:05:39Z reason:Unhealthy]}" +passed: (4.6s) 2025-09-02T07:05:39 "[sig-node] Security Context When creating a container with runAsUser should run the container with uid 65534 [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/490/767 "[sig-network] DNS [Feature:RelaxedDNSSearchValidation] [FeatureGate:RelaxedDNSSearchValidation] [Beta] should work with a search path containing an underscore and a search path with a single dot [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:05:40 "[sig-node] ConfigMap should be consumable via environment variable [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/491/767 "[sig-node] Container Runtime blackbox test on terminated container should report termination message if TerminationMessagePath is set [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4m7s) 2025-09-02T07:05:40 "[sig-node] Probing container should *not* be restarted with a exec \"cat /tmp/health\" liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/492/767 "[sig-node] Probing container should be restarted with a local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.7s) 2025-09-02T07:05:40 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a replication controller. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/493/767 "[sig-apps] TTLAfterFinished job should be deleted once it finishes after TTL seconds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m1s) 2025-09-02T07:05:40 "[sig-node] Probing container with readiness probe that fails should never be ready and never restart [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/494/767 "[sig-apps] ReplicationController should test the lifecycle of a ReplicationController [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:b740b51e8c namespace:e2e-statefulset-880 pod:ss-2]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": Operation cannot be fulfilled on persistentvolumeclaims \"datadir-ss-2\": the object has been modified; please apply your changes to the latest version and try again map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.5s) 2025-09-02T07:05:41 "[sig-node] Security Context When creating a container with runAsUser should run the container with uid 0 [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/495/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should implement legacy replacement when the update strategy is OnDelete [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:05:41 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with memory requests + limits, cpu requests - remove CPU requests [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/496/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a service. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.8s) 2025-09-02T07:05:42 "[sig-network] DNS should resolve DNS of partial qualified names for the cluster [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/497/767 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers metrics should report count of started and failed to start HostProcess containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:05:42 "[sig-network] DNS [Feature:RelaxedDNSSearchValidation] [FeatureGate:RelaxedDNSSearchValidation] [Beta] should work with a search path containing an underscore and a search path with a single dot [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/498/767 "[sig-windows] [Feature:Windows] Windows volume mounts check volume mount permissions container should have readOnly permissions on emptyDir [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:05:43 "[sig-windows] [Feature:WindowsHostProcessContainers] [MinimumKubeletVersion:1.22] HostProcess containers metrics should report count of started and failed to start HostProcess containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/499/767 "[sig-auth] SubjectReview should support SubjectReview API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (19.4s) 2025-09-02T07:05:43 "[sig-network] Networking Granular Checks: Services should be able to handle large requests: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/500/767 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should support ValidatingAdmissionPolicy API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (18.7s) 2025-09-02T07:05:43 "[sig-apps] Job should recreate pods only after they have failed if pod replacement policy is set to Failed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/501/767 "[sig-node] AppArmor load AppArmor profiles can disable an AppArmor profile, using unconfined [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:05:43 "[sig-apps] DisruptionController should update/patch PodDisruptionBudget status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/502/767 "[sig-api-machinery] Watchers should be able to start watching from a specific resource version [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.8s) 2025-09-02T07:05:43 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, three containers - increase c1 resources, no change for c2, decrease c3 resources (no net change for pod) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/503/767 "[sig-apps] DisruptionController should not evict unready pods with Default UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:05:43 "[sig-windows] [Feature:Windows] Windows volume mounts check volume mount permissions container should have readOnly permissions on emptyDir [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/504/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container - increase memory request (NoRestart memory resize policy) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m3s) 2025-09-02T07:05:43 "[sig-apps] DisruptionController should observe that the PodDisruptionBudget status is not updated for unmanaged pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/505/767 "[sig-apps] DisruptionController should observe PodDisruptionBudget status updated [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:05:44 "[sig-node] Security Context should support seccomp runtime/default [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/506/767 "[sig-cli] Kubectl logs logs should be able to retrieve and filter logs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:44Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:9 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:44Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:05:44 "[sig-auth] SubjectReview should support SubjectReview API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/507/767 "[sig-apps] ReplicationController should serve a basic image on each replica with a private image [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/framework/skipper/skipper.go:222]: Only supported for node OS distro [gci ubuntu] (not custom) + +skipped: (500ms) 2025-09-02T07:05:44 "[sig-node] AppArmor load AppArmor profiles can disable an AppArmor profile, using unconfined [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/508/767 "[sig-node] [Feature:Example] Downward API should create a pod that prints his name and namespace [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.9s) 2025-09-02T07:05:45 "[sig-node] Container Runtime blackbox test on terminated container should report termination message if TerminationMessagePath is set [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/509/767 "[sig-node] Probing container should be ready immediately after startupProbe succeeds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:05:45 "[sig-api-machinery] Watchers should be able to start watching from a specific resource version [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/510/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests - decrease memory request [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:10 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:05:45Z reason:Unhealthy]}" +passed: (1.2s) 2025-09-02T07:05:45 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should support ValidatingAdmissionPolicy API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/511/767 "[sig-node] Containers should use the image defaults if command and args are blank [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.2s) 2025-09-02T07:05:46 "[sig-apps] ReplicationController should test the lifecycle of a ReplicationController [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/512/767 "[sig-node] Container Runtime blackbox test on terminated container should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:10 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:46Z reason:Unhealthy]}" +passed: (2.6s) 2025-09-02T07:05:47 "[sig-apps] DisruptionController should observe PodDisruptionBudget status updated [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/513/767 "[sig-node] Variable Expansion should fail substituting values in a volume subpath with backticks [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (19.7s) 2025-09-02T07:05:48 "[sig-network] Networking Granular Checks: Services should be able to handle large requests: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/514/767 "[sig-node] NodeLease NodeLease the kubelet should report node status infrequently [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:9 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:05:49Z reason:Unhealthy]}" +passed: (1m44s) 2025-09-02T07:05:49 "[sig-api-machinery] Garbage collector should support orphan deletion of custom resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/515/767 "[sig-apps] Job should allow to use the pod failure policy on exit code to fail the job early [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (54.5s) 2025-09-02T07:05:50 "[sig-cli] Kubectl client Simple pod should support inline execution and attach with websockets or fallback to spdy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/516/767 "[sig-auth] [Feature:NodeAuthorizer] A node shouldn't be able to create another node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.5s) 2025-09-02T07:05:50 "[sig-node] Container Runtime blackbox test on terminated container should report termination message from log output if TerminationMessagePolicy FallbackToLogsOnError is set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/517/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny pod and configmap creation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.9s) 2025-09-02T07:05:50 "[sig-apps] DisruptionController should not evict unready pods with Default UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/518/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a replica set. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (12.2s) 2025-09-02T07:05:50 "[sig-cli] Kubectl client Kubectl validation should create/apply a valid CR for CRD with validation schema [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/519/767 "[sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] CustomResourceDefinition Watch watch on custom resource definition objects [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.2s) 2025-09-02T07:05:50 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container - increase memory request (NoRestart memory resize policy) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/520/767 "[sig-network] Services should be possible to connect to a service via ExternalIP when the external IP is not assigned to a node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:05:51 "[sig-node] Containers should use the image defaults if command and args are blank [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/521/767 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Merge in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node supports SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (53.1s) 2025-09-02T07:05:51 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with an exec liveness probe with timeout [MinimumKubeletVersion:1.20] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/522/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST NOT ratchet errors raised by transition rules [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:05:51 "[sig-auth] [Feature:NodeAuthorizer] A node shouldn't be able to create another node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/523/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should deny crd creation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.5s) 2025-09-02T07:05:51 "[sig-node] [Feature:Example] Downward API should create a pod that prints his name and namespace [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/524/767 "[sig-cli] Kubectl client Kubectl copy should copy a file from a running Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:05:52 "[sig-cli] Kubectl logs logs should be able to retrieve and filter logs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/525/767 "[sig-node] Variable Expansion should allow composing env vars into new env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.9s) 2025-09-02T07:05:53 "[sig-apps] ReplicationController should serve a basic image on each replica with a private image [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/526/767 "[sig-network] Proxy version v1 should proxy through a service and a pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.7s) 2025-09-02T07:05:53 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests - decrease memory request [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/527/767 "[sig-network] Netpol NetworkPolicy between server and client should stop enforcing policies after they are deleted [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.8s) 2025-09-02T07:05:54 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST NOT ratchet errors raised by transition rules [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/528/767 "[sig-node] Downward API should provide host IP as an env var [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:54Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:0f9fce00ff namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.222:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:05:54Z lastTimestamp:2025-09-02T07:05:54Z reason:Unhealthy]}" +passed: (11.9s) 2025-09-02T07:05:54 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a service. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/529/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:05:54 "[sig-apps] Job should allow to use the pod failure policy on exit code to fail the job early [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/530/767 "[sig-network] Services should respect internalTrafficPolicy=Local Pod and Node, to Pod (hostNetwork: true) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:05:55 "[sig-node] Variable Expansion should fail substituting values in a volume subpath with backticks [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/531/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD without validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:05:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:11 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:05:55Z reason:Unhealthy]}" +time="2025-09-02T07:05:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:17925340ed namespace:e2e-webhook-8785 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:sample-webhook-deployment-5bdc5b565b-2m89j]}" message="{Unhealthy Readiness probe failed: Get \"https://10.129.2.183:8444/readyz\": dial tcp 10.129.2.183:8444: connect: connection refused map[firstTimestamp:2025-09-02T07:05:55Z lastTimestamp:2025-09-02T07:05:55Z reason:Unhealthy]}" +passed: (3s) 2025-09-02T07:05:55 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Merge in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node supports SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/532/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating a validating webhook should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3.8s) 2025-09-02T07:05:56 "[sig-cli] Kubectl client Kubectl copy should copy a file from a running Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/533/767 "[sig-apps] CronJob should schedule multiple jobs concurrently [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (14.6s) 2025-09-02T07:05:56 "[sig-apps] TTLAfterFinished job should be deleted once it finishes after TTL seconds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/534/767 "[sig-network] DNS HostNetwork spec.Hostname field is silently ignored and the node hostname is used when hostNetwork is set to true for a Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:11 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:05:56Z reason:Unhealthy]}" +passed: (4.9s) 2025-09-02T07:05:57 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should deny crd creation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/535/767 "[sig-apps] ReplicaSet Replicaset should have a working scale subresource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (50.8s) 2025-09-02T07:05:57 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should delete PVCs with a WhenDeleted policy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/536/767 "[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m28s) 2025-09-02T07:05:58 "[sig-network] Services should be rejected for evicted pods (no endpoints exist) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/537/767 "[sig-api-machinery] FieldValidation should create/apply a valid CR for CRD with validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (37s) 2025-09-02T07:05:59 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a custom resource. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/538/767 "[sig-node] PodOSRejection [NodeConformance] Kubelet [LinuxOnly] should reject pod when the node OS doesn't match pod's OS [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:05:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:10 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:05:59Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:05:59 "[sig-node] PodTemplates should run the lifecycle of PodTemplates [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/539/767 "[sig-apps] Job should apply changes to a job status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.6s) 2025-09-02T07:05:59 "[sig-node] NodeLease NodeLease the kubelet should report node status infrequently [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/540/767 "[sig-node] InitContainer [NodeConformance] should not start app containers if init containers fail on a RestartAlways pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (20.2s) 2025-09-02T07:05:59 "[sig-network] Connectivity Pod Lifecycle should be able to connect from a Pod to a terminating Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/541/767 "[sig-node] Downward API should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:06:00 "[sig-node] Variable Expansion should allow composing env vars into new env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/542/767 "[sig-node] Security Context When creating a pod with HostUsers should set FSGroup to user inside the container with hostUsers=false [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.7s) 2025-09-02T07:06:00 "[sig-network] Proxy version v1 should proxy through a service and a pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/543/767 "[sig-node] Container Runtime blackbox test when starting a container that exits should run with the expected status [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3s) 2025-09-02T07:06:00 "[sig-network] DNS HostNetwork spec.Hostname field is silently ignored and the node hostname is used when hostNetwork is set to true for a Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/544/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim with a storage class [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7s) 2025-09-02T07:06:02 "[sig-node] Downward API should provide host IP as an env var [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/545/767 "[sig-node] Pods Extended Pod Container lifecycle should not create extra sandbox if all containers are done [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m9s) 2025-09-02T07:06:02 "[sig-apps] CronJob should not emit unexpected warnings [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/546/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.5s) 2025-09-02T07:06:02 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating a validating webhook should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/547/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform rolling updates and roll backs of template modifications with PVCs [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:06:02.618087 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (2.7s) 2025-09-02T07:06:02 "[sig-node] PodOSRejection [NodeConformance] Kubelet [LinuxOnly] should reject pod when the node OS doesn't match pod's OS [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/548/767 "[sig-apps] Deployment deployment should support rollover [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (3.9s) 2025-09-02T07:06:02 "[sig-api-machinery] FieldValidation should create/apply a valid CR for CRD with validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/549/767 "[sig-network] DNS should support configurable pod resolv.conf [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.5s) 2025-09-02T07:06:03 "[sig-network] Services should be possible to connect to a service via ExternalIP when the external IP is not assigned to a node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/550/767 "[sig-apps] Job should execute all indexes despite some failing when using backoffLimitPerIndex [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (11.8s) 2025-09-02T07:06:03 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a replica set. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/551/767 "[sig-network] Services should connect to the named ports exposed by restartable init containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.9s) 2025-09-02T07:06:04 "[sig-apps] ReplicaSet Replicaset should have a working scale subresource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/552/767 "[sig-apps] Job should remove pods when job is deleted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:04Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:06:04Z reason:BackOff]}" +time="2025-09-02T07:06:05Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:115d472265 namespace:e2e-container-runtime-6842 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:terminate-cmd-rpa931a163c-b70a-4b26-9caa-f5dbaca8375f]}" message="{BackOff Back-off restarting failed container terminate-cmd-rpa in pod terminate-cmd-rpa931a163c-b70a-4b26-9caa-f5dbaca8375f_e2e-container-runtime-6842(d6e804aa-ff44-44ce-b7a0-baaf3aad1633) map[firstTimestamp:2025-09-02T07:06:05Z lastTimestamp:2025-09-02T07:06:05Z reason:BackOff]}" +passed: (4.8s) 2025-09-02T07:06:05 "[sig-apps] Job should apply changes to a job status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/553/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, three containers - decrease c1 resources, increase c2 resources, no change for c3 (net increase for pod) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:12 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:06:05Z reason:Unhealthy]}" +time="2025-09-02T07:06:05Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:2 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:06:05Z reason:BackOff]}" +passed: (4.9s) 2025-09-02T07:06:05 "[sig-node] Downward API should provide pod name, namespace and IP address as env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/554/767 "[sig-cli] Kubectl client Kubectl create quota should create a quota with scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:06:05 "[sig-node] Security Context When creating a pod with HostUsers should set FSGroup to user inside the container with hostUsers=false [LinuxOnly] [Feature:UserNamespacesSupport] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/555/767 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/vnd.kubernetes.protobuf,application/json\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:06Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:115d472265 namespace:e2e-container-runtime-6842 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:terminate-cmd-rpa931a163c-b70a-4b26-9caa-f5dbaca8375f]}" message="{BackOff Back-off restarting failed container terminate-cmd-rpa in pod terminate-cmd-rpa931a163c-b70a-4b26-9caa-f5dbaca8375f_e2e-container-runtime-6842(d6e804aa-ff44-44ce-b7a0-baaf3aad1633) map[count:2 firstTimestamp:2025-09-02T07:06:05Z lastTimestamp:2025-09-02T07:06:06Z reason:BackOff]}" +passed: (25.1s) 2025-09-02T07:06:06 "[sig-node] Probing container should be restarted with a local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/556/767 "[sig-apps] ReplicationController should adopt matching pods on creation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:06Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:12 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:06:06Z reason:Unhealthy]}" +passed: (1m43s) 2025-09-02T07:06:07 "[sig-apps] CronJob should delete successful finished jobs with limit of one successful job [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/557/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource definition that contains an x-kubernetes-validations rule that contains a syntax error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (400ms) 2025-09-02T07:06:07 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/vnd.kubernetes.protobuf,application/json\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/558/767 "[sig-network] Netpol NetworkPolicy between server and client should support denying of egress traffic on the client side (even if the server explicitly allows this traffic) [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.8s) 2025-09-02T07:06:07 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/559/767 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 should support forwarding over websockets [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:06:07 "[sig-cli] Kubectl client Kubectl create quota should create a quota with scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/560/767 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a NodePort service [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:11 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:06:09Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:06:09 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource definition that contains an x-kubernetes-validations rule that contains a syntax error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/561/767 "[sig-node] Kubelet when scheduling a read only busybox container should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.4s) 2025-09-02T07:06:09 "[sig-network] DNS should support configurable pod resolv.conf [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/562/767 "[sig-architecture] Conformance Tests should have at least two untainted nodes [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:06:09 "[sig-node] Pods Extended Pod Container lifecycle should not create extra sandbox if all containers are done [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/563/767 "[sig-auth] ServiceAccounts should set ownership and permission when RunAsUser or FsGroup is present [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.5s) 2025-09-02T07:06:10 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase CPU requests only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/564/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against 2 pods with same priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (18.5s) 2025-09-02T07:06:10 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny pod and configmap creation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/565/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, three containers (c1, c2, c3) - increase: CPU (c1,c3), memory (c2, c3) ; decrease: CPU (c2) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.1s) 2025-09-02T07:06:10 "[sig-apps] Job should remove pods when job is deleted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/566/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a GRPC liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.7s) 2025-09-02T07:06:11 "[sig-apps] ReplicationController should adopt matching pods on creation [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/567/767 "[sig-node] Variable Expansion should allow substituting values in a container's args [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:06:11 "[sig-architecture] Conformance Tests should have at least two untainted nodes [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/568/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy to allow traffic based on NamespaceSelector with MatchLabels using default ns label [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.8s) 2025-09-02T07:06:12 "[sig-network] Services should connect to the named ports exposed by restartable init containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/569/767 "[sig-network] Netpol NetworkPolicy between server and client should work with Ingress, Egress specified together [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.7s) 2025-09-02T07:06:13 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a persistent volume claim with a storage class [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/570/767 "[sig-api-machinery] ServerSideApply should not remove a field if an owner unsets the field but other managers still have ownership of the field [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.8s) 2025-09-02T07:06:13 "[sig-node] Kubelet when scheduling a read only busybox container should not write to root filesystem [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/571/767 "[sig-api-machinery] ServerSideApply should remove a field if it is owned but removed in the apply request [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m39s) 2025-09-02T07:06:13 "[sig-autoscaling] [Feature:HPA] Horizontal pod autoscaling (scale resource: CPU) ReplicationController light Should scale from 1 pod to 2 pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/572/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be ready immediately after startupProbe succeeds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:13Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:4ec3efd9df namespace:e2e-deployment-737 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-rollover-deployment-6f6c9688c5-sbdv6]}" message="{BackOff Back-off pulling image \"gcr.io/google_samples/gb-redisslave:nonexistent\" map[firstTimestamp:2025-09-02T07:06:13Z lastTimestamp:2025-09-02T07:06:13Z reason:BackOff]}" +time="2025-09-02T07:06:14Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-2884 pod:testpod-pclass2-1]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:06:15Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:4ec3efd9df namespace:e2e-deployment-737 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-rollover-deployment-6f6c9688c5-sbdv6]}" message="{BackOff Back-off pulling image \"gcr.io/google_samples/gb-redisslave:nonexistent\" map[count:2 firstTimestamp:2025-09-02T07:06:13Z lastTimestamp:2025-09-02T07:06:14Z reason:BackOff]}" +time="2025-09-02T07:06:15Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:fffbb41407 namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.225:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:06:15Z lastTimestamp:2025-09-02T07:06:15Z reason:Unhealthy]}" +time="2025-09-02T07:06:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:13 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:06:15Z reason:Unhealthy]}" +time="2025-09-02T07:06:15Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:abc56be4d6 namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.184:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:06:15Z lastTimestamp:2025-09-02T07:06:15Z reason:Unhealthy]}" +passed: (1.2s) 2025-09-02T07:06:16 "[sig-api-machinery] ServerSideApply should not remove a field if an owner unsets the field but other managers still have ownership of the field [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/573/767 "[sig-network] Networking Granular Checks: Services should function for pod-Service: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:fffbb41407 namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.225:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[count:2 firstTimestamp:2025-09-02T07:06:15Z lastTimestamp:2025-09-02T07:06:16Z reason:Unhealthy]}" +passed: (1s) 2025-09-02T07:06:16 "[sig-api-machinery] ServerSideApply should remove a field if it is owned but removed in the apply request [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/574/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD preserving unknown fields in an embedded object [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (47.1s) 2025-09-02T07:06:16 "[sig-apps] Deployment iterative rollouts should eventually progress [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/575/767 "[sig-network] Networking should provide Internet connection for containers [Feature:Networking-IPv4] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:13 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:06:16Z reason:Unhealthy]}" +passed: (8.7s) 2025-09-02T07:06:17 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 should support forwarding over websockets [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/576/767 "[sig-node] Probing container should be restarted with a GRPC liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.1s) 2025-09-02T07:06:18 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against 2 pods with same priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/577/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory limits only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:12 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:06:19Z reason:Unhealthy]}" +time="2025-09-02T07:06:20Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:3 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:06:20Z reason:BackOff]}" +passed: (14.3s) 2025-09-02T07:06:20 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, three containers - decrease c1 resources, increase c2 resources, no change for c3 (net increase for pod) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/578/767 "[sig-cli] Kubectl client Simple pod Kubectl run running a failing command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9s) 2025-09-02T07:06:21 "[sig-node] Variable Expansion should allow substituting values in a container's args [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/579/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce except clause while egress access to server in CIDR block [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.8s) 2025-09-02T07:06:22 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD without validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/580/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container - decrease memory request (RestartContainer memory resize policy) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:06:22 "[sig-network] Networking should provide Internet connection for containers [Feature:Networking-IPv4] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/581/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] pod-resize-limit-ranger-test [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (37s) 2025-09-02T07:06:23 "[sig-node] Probing container should be ready immediately after startupProbe succeeds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/582/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - increase CPU & memory with an extended resource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (26.9s) 2025-09-02T07:06:23 "[sig-network] Services should respect internalTrafficPolicy=Local Pod and Node, to Pod (hostNetwork: true) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/583/767 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should validate against a Deployment [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:14 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:06:25Z reason:Unhealthy]}" +time="2025-09-02T07:06:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:83279c2fb2 namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.243:80/index.html\": read tcp 10.131.0.2:53492->10.131.0.243:80: read: connection reset by peer map[firstTimestamp:2025-09-02T07:06:26Z lastTimestamp:2025-09-02T07:06:26Z reason:Unhealthy]}" +time="2025-09-02T07:06:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:14 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:06:26Z reason:Unhealthy]}" +time="2025-09-02T07:06:27Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:08319d43ae namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.243:80/index.html\": dial tcp 10.131.0.243:80: connect: connection refused map[firstTimestamp:2025-09-02T07:06:27Z lastTimestamp:2025-09-02T07:06:27Z reason:Unhealthy]}" +passed: (2.7s) 2025-09-02T07:06:28 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should validate against a Deployment [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/584/767 "[sig-api-machinery] API priority and fairness should ensure that requests can be classified by adding FlowSchema and PriorityLevelConfiguration [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:08319d43ae namespace:e2e-statefulset-1734 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss2-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.0.243:80/index.html\": dial tcp 10.131.0.243:80: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:06:27Z lastTimestamp:2025-09-02T07:06:28Z reason:Unhealthy]}" +passed: (24.8s) 2025-09-02T07:06:29 "[sig-apps] Deployment deployment should support rollover [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/585/767 "[sig-apps] StatefulSet MinReadySeconds should be honored when enabled [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:13 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:06:29Z reason:Unhealthy]}" +passed: (28.9s) 2025-09-02T07:06:30 "[sig-node] Container Runtime blackbox test when starting a container that exits should run with the expected status [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/586/767 "[sig-network] Services should delete a collection of services [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (21.4s) 2025-09-02T07:06:30 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a NodePort service [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/587/767 "[sig-apps] ReplicaSet should serve a basic image on each replica with a public image [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (12.8s) 2025-09-02T07:06:30 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD preserving unknown fields in an embedded object [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/588/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a /healthz http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (27.1s) 2025-09-02T07:06:31 "[sig-apps] Job should execute all indexes despite some failing when using backoffLimitPerIndex [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/589/767 "[sig-apps] DisruptionController should not evict unready pods with IfHealthyBudget UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:32Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:4 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:06:32Z reason:BackOff]}" +passed: (3.5s) 2025-09-02T07:06:32 "[sig-api-machinery] API priority and fairness should ensure that requests can be classified by adding FlowSchema and PriorityLevelConfiguration [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/590/767 "[sig-cli] Kubectl client Kubectl version should check is all data is printed [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:7852d913bc namespace:e2e-statefulset-2287 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:test-ss-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.128.2.201:80/index.html\": dial tcp 10.128.2.201:80: connect: connection refused map[firstTimestamp:2025-09-02T07:06:32Z lastTimestamp:2025-09-02T07:06:32Z reason:Unhealthy]}" +passed: (1s) 2025-09-02T07:06:32 "[sig-network] Services should delete a collection of services [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/591/767 "[sig-apps] CronJob should support timezone [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.9s) 2025-09-02T07:06:34 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] pod-resize-limit-ranger-test [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/592/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against 2 pods with different priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (51.7s) 2025-09-02T07:06:34 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should implement legacy replacement when the update strategy is OnDelete [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/593/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests and increase CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:06:34 "[sig-apps] CronJob should support timezone [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/594/767 "[sig-api-machinery] server version should find the server version [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:06:34 "[sig-cli] Kubectl client Kubectl version should check is all data is printed [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/595/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - increase CPU & memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:15 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:06:35Z reason:Unhealthy]}" +time="2025-09-02T07:06:35Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f54a41a9a2 namespace:e2e-container-probe-3181 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:test-webserver-6c0b69e6-a153-4590-96cf-839bcacb857e]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.155:81/\": dial tcp 10.129.2.155:81: connect: connection refused map[count:15 firstTimestamp:2025-09-02T07:04:42Z lastTimestamp:2025-09-02T07:06:35Z reason:Unhealthy]}" +passed: (15.7s) 2025-09-02T07:06:35 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory limits only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/596/767 "[sig-node] InitContainer [NodeConformance] should invoke init containers on a RestartNever pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:06:36 "[sig-api-machinery] server version should find the server version [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/597/767 "[sig-cli] Kubectl client Proxy server should support proxy with --port 0 [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (25.8s) 2025-09-02T07:06:37 "[sig-auth] ServiceAccounts should set ownership and permission when RunAsUser or FsGroup is present [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/598/767 "[sig-node] PreStop graceful pod terminated should wait until preStop hook completes the process [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.8s) 2025-09-02T07:06:37 "[sig-apps] ReplicaSet should serve a basic image on each replica with a public image [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/599/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should reject validating webhook configurations with invalid match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:37Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-8843 pod:testpod-pclass3-1]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (700ms) 2025-09-02T07:06:37 "[sig-cli] Kubectl client Proxy server should support proxy with --port 0 [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/600/767 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should not delete PVC with OnScaledown policy if another controller owns the PVC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.9s) 2025-09-02T07:06:38 "[sig-apps] DisruptionController should not evict unready pods with IfHealthyBudget UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/601/767 "[sig-node] Downward API should provide pod UID as env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:14 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:06:39Z reason:Unhealthy]}" +time="2025-09-02T07:06:39Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-8843 pod:testpod-pclass2-2]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (6m50s) 2025-09-02T07:06:40 "[sig-network] Services should have session affinity timeout work for NodePort service [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/602/767 "[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] should be able to convert a non homogeneous list of CRs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.6s) 2025-09-02T07:06:40 "[sig-apps] StatefulSet MinReadySeconds should be honored when enabled [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/603/767 "[sig-network] EndpointSliceMirroring should mirror a custom Endpoint with multiple subsets and same IP address [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.1s) 2025-09-02T07:06:41 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests and increase CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/604/767 "[sig-network] Networking IPerf2 [Feature:Networking-Performance] should run iperf2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.4s) 2025-09-02T07:06:42 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - increase CPU & memory with an extended resource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/605/767 "[sig-api-machinery] API priority and fairness should support PriorityLevelConfiguration API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.9s) 2025-09-02T07:06:42 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against 2 pods with different priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/606/767 "[sig-node] Variable Expansion should allow substituting values in a volume subpath [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (20.3s) 2025-09-02T07:06:42 "[sig-cli] Kubectl client Simple pod Kubectl run running a failing command [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/607/767 "[sig-api-machinery] AggregatedDiscovery should support aggregated discovery interface [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.4s) 2025-09-02T07:06:44 "[sig-node] InitContainer [NodeConformance] should invoke init containers on a RestartNever pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/608/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] Should recreate evicted statefulset [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:06:44 "[sig-api-machinery] AggregatedDiscovery should support aggregated discovery interface [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/609/767 "[sig-cli] Kubectl client Proxy server should support --unix-socket=/path [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1s) 2025-09-02T07:06:44 "[sig-api-machinery] API priority and fairness should support PriorityLevelConfiguration API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/610/767 "[sig-network] EndpointSlice should support a Service with multiple endpoint IPs specified in multiple EndpointSlices [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.5s) 2025-09-02T07:06:44 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, one container - increase CPU & memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/611/767 "[sig-api-machinery] Generated clientset should create pods, set the deletionTimestamp and deletionGracePeriodSeconds of the pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.2s) 2025-09-02T07:06:44 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Guaranteed QoS pod, three containers (c1, c2, c3) - increase: CPU (c1,c3), memory (c2, c3) ; decrease: CPU (c2) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/612/767 "[sig-network] Services should preserve source pod IP for traffic thru service cluster IP [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.7s) 2025-09-02T07:06:44 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container - decrease memory request (RestartContainer memory resize policy) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/613/767 "[sig-cli] Kubectl Port forwarding With a server listening on localhost should support forwarding over websockets [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23s) 2025-09-02T07:06:45 "[sig-network] Netpol NetworkPolicy between server and client should enforce except clause while egress access to server in CIDR block [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/614/767 "[sig-network] Proxy version v1 should proxy logs on node with explicit kubelet port using proxy subresource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:06:46 "[sig-cli] Kubectl client Proxy server should support --unix-socket=/path [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/615/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should validate Statefulset Status endpoints [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.1s) 2025-09-02T07:06:46 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should reject validating webhook configurations with invalid match conditions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/616/767 "[sig-cli] Kubectl client kubectl subresource flag GET on status subresource of built-in type (node) returns identical info as GET on the built-in type [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:16 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:06:46Z reason:Unhealthy]}" +time="2025-09-02T07:06:46Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:b83da72100 namespace:e2e-crd-webhook-6447 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:sample-crd-conversion-webhook-deployment-d86469d5b-mjb9k]}" message="{Unhealthy Readiness probe failed: Get \"https://10.128.2.206:9444/readyz\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:06:46Z lastTimestamp:2025-09-02T07:06:46Z reason:Unhealthy]}" +passed: (900ms) 2025-09-02T07:06:47 "[sig-network] Proxy version v1 should proxy logs on node with explicit kubelet port using proxy subresource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/617/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted by liveness probe after startup probe enables it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:06:48 "[sig-node] Variable Expansion should allow substituting values in a volume subpath [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/618/767 "[sig-cli] Kubectl Port forwarding With a server listening on localhost that expects a client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (800ms) 2025-09-02T07:06:48 "[sig-cli] Kubectl client kubectl subresource flag GET on status subresource of built-in type (node) returns identical info as GET on the built-in type [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/619/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should adopt matching orphans and release non-matching pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.8s) 2025-09-02T07:06:48 "[sig-node] Downward API should provide pod UID as env vars [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/620/767 "[sig-cli] Kubectl delete interactive based on user confirmation input [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.9s) 2025-09-02T07:06:48 "[sig-api-machinery] Generated clientset should create pods, set the deletionTimestamp and deletionGracePeriodSeconds of the pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/621/767 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition listing custom resource definition objects works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (48.2s) 2025-09-02T07:06:48 "[sig-node] InitContainer [NodeConformance] should not start app containers if init containers fail on a RestartAlways pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/622/767 "[sig-apps] Deployment Deployment should have a working scale subresource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:49Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:5 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:06:49Z reason:BackOff]}" +time="2025-09-02T07:06:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:15 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:06:49Z reason:Unhealthy]}" +time="2025-09-02T07:06:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:87352fabd1 namespace:e2e-crd-webhook-6447 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:sample-crd-conversion-webhook-deployment-d86469d5b-mjb9k]}" message="{Unhealthy Readiness probe failed: Get \"https://10.128.2.206:9444/readyz\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:06:49Z lastTimestamp:2025-09-02T07:06:49Z reason:Unhealthy]}" +passed: (2.7s) 2025-09-02T07:06:52 "[sig-apps] Deployment Deployment should have a working scale subresource [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/623/767 "[sig-api-machinery] CustomResourceFieldSelectors [Privileged:ClusterAdmin] CustomResourceFieldSelectors MUST list and watch custom resources matching the field selector [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (11s) 2025-09-02T07:06:52 "[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] should be able to convert a non homogeneous list of CRs [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/624/767 "[sig-api-machinery] ServerSideApply should give up ownership of a field if forced applied by a controller [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:53Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:87352fabd1 namespace:e2e-crd-webhook-6447 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:sample-crd-conversion-webhook-deployment-d86469d5b-mjb9k]}" message="{Unhealthy Readiness probe failed: Get \"https://10.128.2.206:9444/readyz\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) map[count:2 firstTimestamp:2025-09-02T07:06:49Z lastTimestamp:2025-09-02T07:06:53Z reason:Unhealthy]}" +passed: (59.2s) 2025-09-02T07:06:54 "[sig-network] Netpol NetworkPolicy between server and client should stop enforcing policies after they are deleted [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/625/767 "[sig-apps] ReplicaSet should surface a failure condition on a common issue like exceeded quota [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:54Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:87352fabd1 namespace:e2e-crd-webhook-6447 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:sample-crd-conversion-webhook-deployment-d86469d5b-mjb9k]}" message="{Unhealthy Readiness probe failed: Get \"https://10.128.2.206:9444/readyz\": net/http: request canceled while waiting for connection (Client.Timeout exceeded while awaiting headers) map[count:3 firstTimestamp:2025-09-02T07:06:49Z lastTimestamp:2025-09-02T07:06:54Z reason:Unhealthy]}" +passed: (8.3s) 2025-09-02T07:06:54 "[sig-network] Services should preserve source pod IP for traffic thru service cluster IP [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/626/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should not deadlock when a pod's predecessor fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:06:54 "[sig-api-machinery] ServerSideApply should give up ownership of a field if forced applied by a controller [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/627/767 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a ClusterIP service [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.9s) 2025-09-02T07:06:55 "[sig-cli] Kubectl Port forwarding With a server listening on localhost should support forwarding over websockets [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/628/767 "[sig-node] [Feature:Example] Secret should create a pod that reads a secret [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:17 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:06:55Z reason:Unhealthy]}" +time="2025-09-02T07:06:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:06:55Z reason:Unhealthy]}" +time="2025-09-02T07:06:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:2 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:06:55Z reason:Unhealthy]}" +passed: (40.3s) 2025-09-02T07:06:55 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be ready immediately after startupProbe succeeds [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/629/767 "[sig-network] Services should respect internalTrafficPolicy=Local Pod to Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m4s) 2025-09-02T07:06:55 "[sig-api-machinery] CustomResourceDefinition Watch [Privileged:ClusterAdmin] CustomResourceDefinition Watch watch on custom resource definition objects [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/630/767 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/vnd.kubernetes.protobuf\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:3 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:06:56Z reason:Unhealthy]}" +passed: (7.3s) 2025-09-02T07:06:57 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition listing custom resource definition objects works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/631/767 "[sig-apps] ReplicaSet should serve a basic image on each replica with a private image [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:06:57 "[sig-api-machinery] client-go should negotiate watch and report errors with accept \"application/vnd.kubernetes.protobuf\" [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/632/767 "[sig-network] Services should fallback to terminating endpoints when there are no ready endpoints with externallTrafficPolicy=Cluster [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:57Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:4 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:06:57Z reason:Unhealthy]}" +passed: (16.1s) 2025-09-02T07:06:58 "[sig-network] EndpointSliceMirroring should mirror a custom Endpoint with multiple subsets and same IP address [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/633/767 "[sig-network] Services should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:06:58 "[sig-apps] ReplicaSet should surface a failure condition on a common issue like exceeded quota [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/634/767 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to CRD Validation Rule errors on changed fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (45.7s) 2025-09-02T07:06:58 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy to allow traffic based on NamespaceSelector with MatchLabels using default ns label [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/635/767 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a secret. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:58Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:b74541eb2b namespace:e2e-statefulset-1213 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.213:80/index.html\": dial tcp 10.129.2.213:80: connect: connection refused map[firstTimestamp:2025-09-02T07:06:58Z lastTimestamp:2025-09-02T07:06:58Z reason:Unhealthy]}" +time="2025-09-02T07:06:58Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:5 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:06:58Z reason:Unhealthy]}" +passed: (9.4s) 2025-09-02T07:06:59 "[sig-cli] Kubectl delete interactive based on user confirmation input [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/636/767 "[sig-api-machinery] FieldValidation should detect unknown metadata fields in both the root and embedded object of a CR [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:06:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:16 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:06:59Z reason:Unhealthy]}" +time="2025-09-02T07:06:59Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:6 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:06:59Z reason:BackOff]}" +passed: (13.9s) 2025-09-02T07:06:59 "[sig-network] EndpointSlice should support a Service with multiple endpoint IPs specified in multiple EndpointSlices [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/637/767 "[sig-network] Netpol NetworkPolicy between server and client should allow ingress access from updated namespace [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:06:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:6 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:06:59Z reason:Unhealthy]}" +time="2025-09-02T07:07:00Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:00Z reason:Unhealthy]}" +time="2025-09-02T07:07:00Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:7 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:00Z reason:Unhealthy]}" +time="2025-09-02T07:07:01Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:01Z reason:Unhealthy]}" +passed: (1.7s) 2025-09-02T07:07:01 "[sig-api-machinery] CRDValidationRatcheting [Privileged:ClusterAdmin] [FeatureGate:CRDValidationRatcheting] MUST fail to update a resource due to CRD Validation Rule errors on changed fields [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/638/767 "[sig-cli] Kubectl client Kubectl expose should create services for rc [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:01Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:8 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:01Z reason:Unhealthy]}" +passed: (1m5s) 2025-09-02T07:07:01 "[sig-apps] CronJob should schedule multiple jobs concurrently [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/639/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate everything except 'skip-me' configmaps [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (13s) 2025-09-02T07:07:02 "[sig-cli] Kubectl Port forwarding With a server listening on localhost that expects a client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/640/767 "[sig-network] DNS should provide DNS for ExternalName services [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:02Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:02Z reason:Unhealthy]}" +passed: (5.7s) 2025-09-02T07:07:02 "[sig-node] [Feature:Example] Secret should create a pod that reads a secret [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/641/767 "[sig-node] Security Context should support seccomp default which is unconfined [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:02Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:02Z reason:Unhealthy]}" +time="2025-09-02T07:07:02Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:9 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:02Z reason:Unhealthy]}" +passed: (24.6s) 2025-09-02T07:07:03 "[sig-node] PreStop graceful pod terminated should wait until preStop hook completes the process [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/642/767 "[sig-network] Netpol NetworkPolicy between server and client should support a 'default-deny-all' policy [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:07:03.136005 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +time="2025-09-02T07:07:03Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:03Z reason:Unhealthy]}" +passed: (9.6s) 2025-09-02T07:07:03 "[sig-api-machinery] CustomResourceFieldSelectors [Privileged:ClusterAdmin] CustomResourceFieldSelectors MUST list and watch custom resources matching the field selector [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/643/767 "[sig-network] Networking Granular Checks: Pods should function for intra-pod communication: http [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (18.3s) 2025-09-02T07:07:03 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] Should recreate evicted statefulset [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/644/767 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 that expects a client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:03Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:10 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:03Z reason:Unhealthy]}" +time="2025-09-02T07:07:04Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:04Z reason:Unhealthy]}" +passed: (3.8s) 2025-09-02T07:07:04 "[sig-api-machinery] FieldValidation should detect unknown metadata fields in both the root and embedded object of a CR [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/645/767 "[sig-autoscaling] [Feature:HPA] Horizontal pod autoscaling (scale resource: CPU) CustomResourceDefinition Should scale with a CRD targetRef [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:04Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:04Z reason:Unhealthy]}" +time="2025-09-02T07:07:04Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:11 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:04Z reason:Unhealthy]}" +time="2025-09-02T07:07:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:05Z reason:Unhealthy]}" +time="2025-09-02T07:07:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:18 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:07:05Z reason:Unhealthy]}" +time="2025-09-02T07:07:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:05Z reason:Unhealthy]}" +time="2025-09-02T07:07:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:12 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:05Z reason:Unhealthy]}" +time="2025-09-02T07:07:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:05Z reason:Unhealthy]}" +time="2025-09-02T07:07:06Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:06Z reason:Unhealthy]}" +passed: (57.6s) 2025-09-02T07:07:06 "[sig-network] Netpol NetworkPolicy between server and client should support denying of egress traffic on the client side (even if the server explicitly allows this traffic) [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/646/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against a pod with different priority class (ScopeSelectorOpExists). [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:06Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:13 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:06Z reason:Unhealthy]}" +time="2025-09-02T07:07:06Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:06Z reason:Unhealthy]}" +time="2025-09-02T07:07:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:06Z reason:Unhealthy]}" +time="2025-09-02T07:07:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:07Z reason:Unhealthy]}" +time="2025-09-02T07:07:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:14 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:07Z reason:Unhealthy]}" +time="2025-09-02T07:07:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:07Z reason:Unhealthy]}" +passed: (4.8s) 2025-09-02T07:07:08 "[sig-node] Security Context should support seccomp default which is unconfined [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/647/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests and limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.9s) 2025-09-02T07:07:08 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should validate Statefulset Status endpoints [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/648/767 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource definition that contains an x-kubernetes-validations rule that exceeds the estimated cost limit [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:08Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:08Z reason:Unhealthy]}" +time="2025-09-02T07:07:08Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:08Z reason:Unhealthy]}" +time="2025-09-02T07:07:08Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:15 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:08Z reason:Unhealthy]}" +time="2025-09-02T07:07:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:09Z reason:Unhealthy]}" +time="2025-09-02T07:07:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:17 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:07:09Z reason:Unhealthy]}" +time="2025-09-02T07:07:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-5633 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:07:04Z lastTimestamp:2025-09-02T07:07:09Z reason:Unhealthy]}" +time="2025-09-02T07:07:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:16 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:09Z reason:Unhealthy]}" +time="2025-09-02T07:07:10Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:10Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:07:10 "[sig-api-machinery] CustomResourceValidationRules [Privileged:ClusterAdmin] MUST fail create of a custom resource definition that contains an x-kubernetes-validations rule that exceeds the estimated cost limit [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/649/767 "[sig-auth] ServiceAccounts should create a serviceAccountToken and ensure a successful TokenReview [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:10Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-4736 pod:testpod-pclass8]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:07:10Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:17 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:10Z reason:Unhealthy]}" +passed: (7.7s) 2025-09-02T07:07:11 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate everything except 'skip-me' configmaps [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/650/767 "[sig-network] EndpointSlice should support a Service with multiple ports specified in multiple EndpointSlices [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:11Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:11Z reason:Unhealthy]}" +passed: (12.1s) 2025-09-02T07:07:11 "[sig-network] Services should have session affinity work for service with type clusterIP [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/651/767 "[sig-node] Containers should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (8.4s) 2025-09-02T07:07:11 "[sig-cli] Kubectl client Kubectl expose should create services for rc [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/652/767 "[sig-apps] ReplicaSet should list and delete a collection of ReplicaSets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:11Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:18 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:11Z reason:Unhealthy]}" +time="2025-09-02T07:07:12Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:12Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:07:12 "[sig-auth] ServiceAccounts should create a serviceAccountToken and ensure a successful TokenReview [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/653/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should not be able to mutate or prevent deletion of webhook configuration objects [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:12Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:19 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:12Z reason:Unhealthy]}" +time="2025-09-02T07:07:13Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:13Z reason:Unhealthy]}" +time="2025-09-02T07:07:13Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:7 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:07:13Z reason:BackOff]}" +time="2025-09-02T07:07:13Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:20 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:13Z reason:Unhealthy]}" +time="2025-09-02T07:07:14Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:14Z reason:Unhealthy]}" +passed: (15.7s) 2025-09-02T07:07:14 "[sig-apps] ReplicaSet should serve a basic image on each replica with a private image [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/654/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a failing exec liveness probe that took longer than the timeout [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:07:14 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (quota set to pod count: 1) against a pod with different priority class (ScopeSelectorOpExists). [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/655/767 "[sig-network] Netpol NetworkPolicy between server and client should deny egress from pods based on PodSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:14Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:06:55Z lastTimestamp:2025-09-02T07:07:14Z reason:Unhealthy]}" +time="2025-09-02T07:07:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:19 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:07:15Z reason:Unhealthy]}" +time="2025-09-02T07:07:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:15Z reason:Unhealthy]}" +passed: (18.1s) 2025-09-02T07:07:15 "[sig-network] Services should respect internalTrafficPolicy=Local Pod to Pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/656/767 "[sig-api-machinery] API priority and fairness should ensure that requests can't be drowned out (fairness) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:16Z reason:Unhealthy]}" +time="2025-09-02T07:07:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:07:16Z lastTimestamp:2025-09-02T07:07:16Z reason:Unhealthy]}" +time="2025-09-02T07:07:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:07:16Z lastTimestamp:2025-09-02T07:07:16Z reason:Unhealthy]}" +time="2025-09-02T07:07:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:07:16Z lastTimestamp:2025-09-02T07:07:16Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/apimachinery/flowcontrol.go:192]: skipping test until flakiness is resolved + +skipped: (500ms) 2025-09-02T07:07:16 "[sig-api-machinery] API priority and fairness should ensure that requests can't be drowned out (fairness) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/657/767 "[sig-network] Networking Granular Checks: Pods should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:17Z reason:Unhealthy]}" +passed: (17.6s) 2025-09-02T07:07:17 "[sig-api-machinery] ResourceQuota should create a ResourceQuota and capture the life of a secret. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/658/767 "[sig-network] Networking Granular Checks: Services should update endpoints: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:07:16Z lastTimestamp:2025-09-02T07:07:17Z reason:Unhealthy]}" +time="2025-09-02T07:07:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:254673a51d namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.1.1:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:07:17Z lastTimestamp:2025-09-02T07:07:17Z reason:Unhealthy]}" +passed: (8.2s) 2025-09-02T07:07:18 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests and limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/659/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu requests and limits - resize with equivalents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:18Z reason:Unhealthy]}" +time="2025-09-02T07:07:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:18Z reason:Unhealthy]}" +time="2025-09-02T07:07:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:19Z reason:Unhealthy]}" +time="2025-09-02T07:07:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:19Z reason:Unhealthy]}" +time="2025-09-02T07:07:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:18 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:07:19Z reason:Unhealthy]}" +time="2025-09-02T07:07:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:20Z reason:Unhealthy]}" +time="2025-09-02T07:07:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:20Z reason:Unhealthy]}" +passed: (15s) 2025-09-02T07:07:20 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 that expects a client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/660/767 "[sig-api-machinery] Servers with support for API chunking should return chunks of results for list calls [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:20Z reason:Unhealthy]}" +passed: (24.2s) 2025-09-02T07:07:20 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a ClusterIP service [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/661/767 "[sig-network] EndpointSlice should have Endpoints and EndpointSlices pointing to API Server [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:2358965f75 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.2.239:80/index.html\": dial tcp 10.131.2.239:80: connect: connection refused map[firstTimestamp:2025-09-02T07:07:20Z lastTimestamp:2025-09-02T07:07:20Z reason:Unhealthy]}" +passed: (7.8s) 2025-09-02T07:07:20 "[sig-apps] ReplicaSet should list and delete a collection of ReplicaSets [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/662/767 "[sig-api-machinery] FieldValidation should detect unknown and duplicate fields of a typed object [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:07:21 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should not be able to mutate or prevent deletion of webhook configuration objects [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/663/767 "[sig-node] Lifecycle Sleep Hook when create a pod with lifecycle hook using sleep action valid prestop hook using sleep action [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:21Z reason:Unhealthy]}" +time="2025-09-02T07:07:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:21Z reason:Unhealthy]}" +time="2025-09-02T07:07:22Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:22Z reason:Unhealthy]}" +time="2025-09-02T07:07:22Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:22Z reason:Unhealthy]}" +passed: (9.7s) 2025-09-02T07:07:22 "[sig-network] EndpointSlice should support a Service with multiple ports specified in multiple EndpointSlices [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/664/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy to allow ingress traffic from pods in all namespaces [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m9s) 2025-09-02T07:07:22 "[sig-network] Netpol NetworkPolicy between server and client should work with Ingress, Egress specified together [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/665/767 "[sig-network] Networking Granular Checks: Services should function for endpoint-Service: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:07:22 "[sig-network] EndpointSlice should have Endpoints and EndpointSlices pointing to API Server [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/666/767 "[sig-network] HostPort validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:23Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:07:00Z lastTimestamp:2025-09-02T07:07:23Z reason:Unhealthy]}" +time="2025-09-02T07:07:23Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:23Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:07:23 "[sig-api-machinery] FieldValidation should detect unknown and duplicate fields of a typed object [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/667/767 "[sig-auth] [Feature:NodeAuthorizer] A node shouldn't be able to delete another node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.7s) 2025-09-02T07:07:23 "[sig-node] Containers should be able to override the image's default command (container entrypoint) [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/668/767 "[sig-instrumentation] Events API should ensure that an event can be fetched, patched, deleted, and listed [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:24Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:24Z reason:Unhealthy]}" +time="2025-09-02T07:07:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:25Z reason:Unhealthy]}" +time="2025-09-02T07:07:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:20 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:07:25Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:07:25 "[sig-auth] [Feature:NodeAuthorizer] A node shouldn't be able to delete another node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/669/767 "[sig-apps] DisruptionController evictions: enough pods, replicaSet, percentage => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:26Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:8 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:07:26Z reason:BackOff]}" +time="2025-09-02T07:07:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:26Z reason:Unhealthy]}" +passed: (1.3s) 2025-09-02T07:07:26 "[sig-instrumentation] Events API should ensure that an event can be fetched, patched, deleted, and listed [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/670/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory requests and decrease CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:27Z reason:Unhealthy]}" +time="2025-09-02T07:07:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:28Z reason:Unhealthy]}" +passed: (1m9s) 2025-09-02T07:07:28 "[sig-node] Probing container should be restarted with a GRPC liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/671/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container - decrease CPU (NotRequired) & memory (RestartContainer) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m17s) 2025-09-02T07:07:29 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a GRPC liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/672/767 "[sig-windows] [Feature:WindowsHyperVContainers] HyperV containers should start a hyperv isolated container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:19 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:07:29Z reason:Unhealthy]}" +time="2025-09-02T07:07:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:29Z reason:Unhealthy]}" +time="2025-09-02T07:07:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:30Z reason:Unhealthy]}" +passed: (10.5s) 2025-09-02T07:07:30 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu requests and limits - resize with equivalents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/673/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:07:30 "[sig-windows] [Feature:WindowsHyperVContainers] HyperV containers should start a hyperv isolated container [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/674/767 "[sig-windows] [Feature:Windows] SecurityContext should override SecurityContext username if set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:31Z reason:Unhealthy]}" +passed: (26.8s) 2025-09-02T07:07:32 "[sig-network] Networking Granular Checks: Pods should function for intra-pod communication: http [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/675/767 "[sig-apps] Job should delete a job [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:07:32 "[sig-windows] [Feature:Windows] SecurityContext should override SecurityContext username if set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/676/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy based on Multiple PodSelectors and NamespaceSelectors [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:32Z reason:Unhealthy]}" +time="2025-09-02T07:07:33Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:33Z reason:Unhealthy]}" +time="2025-09-02T07:07:33Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:33Z reason:Unhealthy]}" +time="2025-09-02T07:07:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:34Z reason:Unhealthy]}" +passed: (6.6s) 2025-09-02T07:07:34 "[sig-apps] DisruptionController evictions: enough pods, replicaSet, percentage => should allow an eviction [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/677/767 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD with validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:34Z reason:Unhealthy]}" +time="2025-09-02T07:07:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:34Z reason:Unhealthy]}" +passed: (31.5s) 2025-09-02T07:07:34 "[sig-network] DNS should provide DNS for ExternalName services [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/678/767 "[sig-network] Netpol NetworkPolicy between server and client should enforce multiple egress policies with egress allow-all policy taking precedence [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:35Z reason:Unhealthy]}" +time="2025-09-02T07:07:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:35Z reason:Unhealthy]}" +time="2025-09-02T07:07:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:21 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:07:35Z reason:Unhealthy]}" +time="2025-09-02T07:07:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:36Z reason:Unhealthy]}" +time="2025-09-02T07:07:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:36Z reason:Unhealthy]}" +time="2025-09-02T07:07:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:37Z reason:Unhealthy]}" +time="2025-09-02T07:07:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:37Z reason:Unhealthy]}" +passed: (8.8s) 2025-09-02T07:07:37 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - increase memory requests and decrease CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/679/767 "[sig-auth] ServiceAccounts no secret-based service account token should be auto-generated [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:38Z reason:Unhealthy]}" +time="2025-09-02T07:07:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:38Z reason:Unhealthy]}" +passed: (5s) 2025-09-02T07:07:38 "[sig-apps] Job should delete a job [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/680/767 "[sig-network] Services should be able to update service type to NodePort listening on same port number but different protocols [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:39Z reason:Unhealthy]}" +time="2025-09-02T07:07:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:39Z reason:Unhealthy]}" +time="2025-09-02T07:07:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:20 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:07:39Z reason:Unhealthy]}" +time="2025-09-02T07:07:39Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:9 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:07:39Z reason:BackOff]}" +time="2025-09-02T07:07:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:40Z reason:Unhealthy]}" +time="2025-09-02T07:07:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:40Z reason:Unhealthy]}" +time="2025-09-02T07:07:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:07:18Z lastTimestamp:2025-09-02T07:07:41Z reason:Unhealthy]}" +time="2025-09-02T07:07:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:41Z reason:Unhealthy]}" +time="2025-09-02T07:07:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:42Z reason:Unhealthy]}" +time="2025-09-02T07:07:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:43Z reason:Unhealthy]}" +passed: (21.8s) 2025-09-02T07:07:43 "[sig-api-machinery] Servers with support for API chunking should return chunks of results for list calls [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/681/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, two containers with cpu & memory requests + limits - reorder containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:44Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:44Z reason:Unhealthy]}" +time="2025-09-02T07:07:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:45Z reason:Unhealthy]}" +time="2025-09-02T07:07:45Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:22 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:07:45Z reason:Unhealthy]}" +passed: (16s) 2025-09-02T07:07:45 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container - decrease CPU (NotRequired) & memory (RestartContainer) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/682/767 "[sig-network] Services should be able to change the type from NodePort to ExternalName [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:46Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:46Z reason:Unhealthy]}" +passed: (47.9s) 2025-09-02T07:07:47 "[sig-network] Services should fallback to terminating endpoints when there are no ready endpoints with externallTrafficPolicy=Cluster [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/683/767 "[sig-apps] Job should manage the lifecycle of a job [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:47Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:47Z reason:Unhealthy]}" +passed: (29.2s) 2025-09-02T07:07:47 "[sig-network] Networking Granular Checks: Pods should function for node-pod communication: udp [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/684/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a exec \"cat /tmp/health\" liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.1s) 2025-09-02T07:07:47 "[sig-network] HostPort validates that there is no conflict between pods with same hostPort but different hostIP and protocol [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/685/767 "[sig-api-machinery] Server request timeout default timeout should be used if the specified timeout in the request URL is 0s [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:07:47 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, two containers with cpu & memory requests + limits - reorder containers [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/686/767 "[sig-network] Services should be updated after adding or deleting ports [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:48Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:48Z reason:Unhealthy]}" +passed: (24.5s) 2025-09-02T07:07:48 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy to allow ingress traffic from pods in all namespaces [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/687/767 "[sig-network] Services should be able to create a functioning NodePort service [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (32.9s) 2025-09-02T07:07:48 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a failing exec liveness probe that took longer than the timeout [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/688/767 "[sig-api-machinery] Servers with support for Table transformation should return chunks of table results for list calls [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (58.9s) 2025-09-02T07:07:48 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should adopt matching orphans and release non-matching pods [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/689/767 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Merge in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node does not support SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.5s) 2025-09-02T07:07:49 "[sig-auth] ServiceAccounts no secret-based service account token should be auto-generated [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/690/767 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a ClusterIP service and client is hostNetwork [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:21 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:07:49Z reason:Unhealthy]}" +time="2025-09-02T07:07:49Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:49Z reason:Unhealthy]}" +passed: (600ms) 2025-09-02T07:07:49 "[sig-api-machinery] Server request timeout default timeout should be used if the specified timeout in the request URL is 0s [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/691/767 "[sig-node] Probing container should *not* be restarted with a GRPC liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:50Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:50Z reason:Unhealthy]}" +passed: (800ms) 2025-09-02T07:07:50 "[sig-api-machinery] Servers with support for Table transformation should return chunks of table results for list calls [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/692/767 "[sig-node] Downward API should provide hostIPs as an env var [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (15.5s) 2025-09-02T07:07:51 "[sig-api-machinery] CustomResourcePublishOpenAPI [Privileged:ClusterAdmin] works for CRD with validation schema [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/693/767 "[sig-windows] [Feature:Windows] Windows volume mounts check volume mount permissions container should have readOnly permissions on hostMapPath [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:51Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:51Z reason:Unhealthy]}" +passed: (35.4s) 2025-09-02T07:07:51 "[sig-network] Netpol NetworkPolicy between server and client should deny egress from pods based on PodSelector [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/694/767 "[sig-network] Services should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m3s) 2025-09-02T07:07:52 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted by liveness probe after startup probe enables it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/695/767 "[sig-network] Services should check NodePort out-of-range [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:52Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:52Z reason:Unhealthy]}" +time="2025-09-02T07:07:52Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:eb41650629 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.194:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:07:52Z lastTimestamp:2025-09-02T07:07:52Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:07:52 "[sig-windows] [Feature:Windows] Windows volume mounts check volume mount permissions container should have readOnly permissions on hostMapPath [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/696/767 "[sig-api-machinery] Watchers should observe an object deletion if it stops meeting the requirements of the selector [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/common/node/security_context.go:903]: scheduled node does support SupplementalGroupsPolicy + +skipped: (2.6s) 2025-09-02T07:07:52 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy was set to Merge in PodSpec when the container's primary UID belongs to some groups in the image when scheduled node does not support SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/697/767 "[sig-node] Pods should run through the lifecycle of Pods and PodStatus [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:53Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:53Z reason:Unhealthy]}" +passed: (900ms) 2025-09-02T07:07:54 "[sig-network] Services should check NodePort out-of-range [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/698/767 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop exec hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:54Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:10 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:07:54Z reason:BackOff]}" +time="2025-09-02T07:07:54Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:54Z reason:Unhealthy]}" +passed: (2m16s) 2025-09-02T07:07:54 "[sig-apps] StatefulSet AvailableReplicas should get updated accordingly when MinReadySeconds is enabled [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/699/767 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy nil in SecurityContext when if the container's primary UID belongs to some groups in the image when scheduled node does not support SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.7s) 2025-09-02T07:07:54 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/700/767 "[sig-node] Pods should support retrieving logs from the container over websockets [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:23 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:07:55Z reason:Unhealthy]}" +time="2025-09-02T07:07:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:55Z reason:Unhealthy]}" +passed: (51.2s) 2025-09-02T07:07:55 "[sig-network] Netpol NetworkPolicy between server and client should support a 'default-deny-all' policy [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/701/767 "[sig-cli] Kubectl client Kubectl create quota should create a quota without scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:07:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:07:33Z lastTimestamp:2025-09-02T07:07:56Z reason:Unhealthy]}" +passed: (9.5s) 2025-09-02T07:07:56 "[sig-network] Services should be able to change the type from NodePort to ExternalName [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/702/767 "[sig-network] Services should prevent NodePort collisions [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:07:57 "[sig-node] Downward API should provide hostIPs as an env var [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/703/767 "[sig-apps] Job should record the failure-count in the Pod annotation when using backoffLimitPerIndex [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (56.3s) 2025-09-02T07:07:57 "[sig-network] Netpol NetworkPolicy between server and client should allow ingress access from updated namespace [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/704/767 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 that expects NO client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:07:57 "[sig-cli] Kubectl client Kubectl create quota should create a quota without scopes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/705/767 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should allow expressions to refer variables. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1s) 2025-09-02T07:07:58 "[sig-network] Services should prevent NodePort collisions [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/706/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests and increase memory limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/common/node/security_context.go:871]: scheduled node does support SupplementalGroupsPolicy + +skipped: (2.6s) 2025-09-02T07:07:58 "[sig-node] Security Context SupplementalGroupsPolicy [LinuxOnly] [Feature:SupplementalGroupsPolicy] [FeatureGate:SupplementalGroupsPolicy] [Beta] when SupplementalGroupsPolicy nil in SecurityContext when if the container's primary UID belongs to some groups in the image when scheduled node does not support SupplementalGroupsPolicy it should add SupplementalGroups to them [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/707/767 "[sig-cli] Kubectl client Kubectl validation should create/apply a CR with unknown fields for CRD with no validation schema [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.7s) 2025-09-02T07:07:58 "[sig-node] Pods should support retrieving logs from the container over websockets [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/708/767 "[sig-node] ConfigMap should be consumable as environment variable names when configmap keys start with a digit [Feature:RelaxedEnvironmentVariableValidation] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.8s) 2025-09-02T07:07:58 "[sig-node] Pods should run through the lifecycle of Pods and PodStatus [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/709/767 "[sig-apps] Job should adopt matching orphans and release non-matching pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:07:58 "[sig-network] Networking Granular Checks: Services should function for pod-Service: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/710/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should honor timeout [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:07:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:22 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:07:59Z reason:Unhealthy]}" +passed: (11s) 2025-09-02T07:07:59 "[sig-apps] Job should manage the lifecycle of a job [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/711/767 "[sig-node] Pods should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.4s) 2025-09-02T07:07:59 "[sig-network] Services should be updated after adding or deleting ports [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/712/767 "[sig-cli] Kubectl client Kubectl validation should detect unknown metadata fields in both the root and embedded object of a CR [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (26.7s) 2025-09-02T07:08:00 "[sig-network] Netpol NetworkPolicy between server and client should enforce policy based on Multiple PodSelectors and NamespaceSelectors [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/713/767 "[sig-cli] Kubectl client Kubectl get componentstatuses should get componentstatuses [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1.9s) 2025-09-02T07:08:01 "[sig-api-machinery] ValidatingAdmissionPolicy [Privileged:ClusterAdmin] should allow expressions to refer variables. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/714/767 "[sig-apps] Job should allow to use a pod failure policy to ignore failure matching on DisruptionTarget condition [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1.3s) 2025-09-02T07:08:03 "[sig-cli] Kubectl client Kubectl get componentstatuses should get componentstatuses [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/715/767 "[sig-node] Probing container should be restarted startup probe fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11s) 2025-09-02T07:08:03 "[sig-network] Services should be able to switch session affinity for service with type clusterIP [LinuxOnly] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/716/767 "[sig-apps] CronJob should set the cronjob-scheduled-timestamp annotation on a job [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:08:03.614538 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (10.7s) 2025-09-02T07:08:04 "[sig-api-machinery] Watchers should observe an object deletion if it stops meeting the requirements of the selector [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/717/767 "[sig-api-machinery] ServerSideApply should work for CRDs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:05Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:24 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:08:05Z reason:Unhealthy]}" +time="2025-09-02T07:08:05Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:7852d913bc namespace:e2e-statefulset-2287 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:test-ss-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.128.2.201:80/index.html\": dial tcp 10.128.2.201:80: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:06:32Z lastTimestamp:2025-09-02T07:08:05Z reason:Unhealthy]}" +passed: (10.8s) 2025-09-02T07:08:06 "[sig-node] Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop exec hook properly [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/718/767 "[sig-api-machinery] ServerSideApply should create an applied object if it does not already exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:06Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:06Z reason:Unhealthy]}" +time="2025-09-02T07:08:06Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:2 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:06Z reason:Unhealthy]}" +passed: (6.3s) 2025-09-02T07:08:06 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease CPU requests and increase memory limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/719/767 "[sig-network] Services should have session affinity timeout work for service with type clusterIP [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:3 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:07Z reason:Unhealthy]}" +passed: (6.8s) 2025-09-02T07:08:07 "[sig-node] ConfigMap should be consumable as environment variable names when configmap keys start with a digit [Feature:RelaxedEnvironmentVariableValidation] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/720/767 "[sig-api-machinery] Discovery Custom resource should have storage version hash [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (800ms) 2025-09-02T07:08:08 "[sig-api-machinery] ServerSideApply should create an applied object if it does not already exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/721/767 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (cpu, memory quota set) against a pod with same priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:08Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:4 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:08Z reason:Unhealthy]}" +passed: (18.6s) 2025-09-02T07:08:08 "[sig-network] Services should be able to create a functioning NodePort service [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/722/767 "[sig-node] Ephemeral Containers [NodeConformance] will start an ephemeral container in an existing pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (18.3s) 2025-09-02T07:08:08 "[sig-network] Conntrack should be able to preserve UDP traffic when server pod cycles for a ClusterIP service and client is hostNetwork [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/723/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, mixed containers - add limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:23 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:08:09Z reason:Unhealthy]}" +time="2025-09-02T07:08:09Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:11 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:08:09Z reason:BackOff]}" +time="2025-09-02T07:08:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:09Z reason:Unhealthy]}" +time="2025-09-02T07:08:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:5 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:09Z reason:Unhealthy]}" +passed: (4m5s) 2025-09-02T07:08:10 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a non-local redirect http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/724/767 "[sig-cli] Kubectl client Kubectl api-versions should check if v1 is in available api versions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:10Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:10Z reason:Unhealthy]}" +passed: (1m31s) 2025-09-02T07:08:10 "[sig-apps] StatefulSet Non-retain StatefulSetPersistentVolumeClaimPolicy should not delete PVC with OnScaledown policy if another controller owns the PVC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/725/767 "[sig-auth] ServiceAccounts should update a ServiceAccount [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:10Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:6 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:10Z reason:Unhealthy]}" +passed: (9.3s) 2025-09-02T07:08:10 "[sig-node] Pods should allow activeDeadlineSeconds to be updated [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/726/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a exec \"cat /tmp/health\" liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10s) 2025-09-02T07:08:11 "[sig-apps] Job should adopt matching orphans and release non-matching pods [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/727/767 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with best effort scope. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.3s) 2025-09-02T07:08:11 "[sig-api-machinery] Discovery Custom resource should have storage version hash [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/728/767 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:11Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:11Z reason:Unhealthy]}" +time="2025-09-02T07:08:11Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:11Z reason:Unhealthy]}" +passed: (12.9s) 2025-09-02T07:08:11 "[sig-cli] Kubectl Port forwarding With a server listening on 0.0.0.0 that expects NO client request should support a client that connects, sends DATA, and disconnects [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/729/767 "[sig-node] Pods Extended Pod TerminationGracePeriodSeconds is negative pod with negative grace period [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:11Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:7 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:11Z reason:Unhealthy]}" +passed: (31.6s) 2025-09-02T07:08:11 "[sig-network] Services should be able to update service type to NodePort listening on same port number but different protocols [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/730/767 "[sig-network] DNS should work with the pod containing more than 6 DNS search paths and longer than 256 search list characters [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:12Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-priorityclass-9374 pod:testpod-pclass9]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (900ms) 2025-09-02T07:08:12 "[sig-cli] Kubectl client Kubectl api-versions should check if v1 is in available api versions [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/731/767 "[sig-node] Security Context when creating containers with AllowPrivilegeEscalation should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:08:12 "[sig-auth] ServiceAccounts should update a ServiceAccount [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/732/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] BestEffort pod - try requesting memory, expect error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:12Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:12Z reason:Unhealthy]}" +time="2025-09-02T07:08:12Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:8 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:12Z reason:Unhealthy]}" +passed: (500ms) 2025-09-02T07:08:13 "[sig-node] Sysctls [LinuxOnly] [NodeConformance] should reject invalid sysctls [MinimumKubeletVersion:1.21] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/733/767 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with unknown usernames at Pod level [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:13Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:13Z reason:Unhealthy]}" +passed: (7.7s) 2025-09-02T07:08:13 "[sig-api-machinery] ServerSideApply should work for CRDs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/734/767 "[sig-apps] DisruptionController should evict ready pods with IfHealthyBudget UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:13Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:9 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:13Z reason:Unhealthy]}" +passed: (12.8s) 2025-09-02T07:08:13 "[sig-cli] Kubectl client Kubectl validation should create/apply a CR with unknown fields for CRD with no validation schema [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/735/767 "[sig-network] DNS should provide DNS for services [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (900ms) 2025-09-02T07:08:14 "[sig-node] Pods Extended Pod TerminationGracePeriodSeconds is negative pod with negative grace period [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/736/767 "[sig-windows] Hybrid cluster network for all supported CNIs should provide Internet connection for Linux containers [Feature:Networking-IPv4] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:14Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:14Z reason:Unhealthy]}" +time="2025-09-02T07:08:14Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:10 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:14Z reason:Unhealthy]}" +passed: (1m32s) 2025-09-02T07:08:14 "[sig-network] Networking IPerf2 [Feature:Networking-Performance] should run iperf2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/737/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, mixed containers - scale up cpu and memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (16.7s) 2025-09-02T07:08:14 "[sig-apps] Job should record the failure-count in the Pod annotation when using backoffLimitPerIndex [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/738/767 "[sig-cli] Kubectl client Kubectl validation should detect unknown metadata fields of a typed object [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:08:15 "[sig-windows] [Feature:Windows] SecurityContext should not be able to create pods with unknown usernames at Pod level [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/739/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease memory requests and increase CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:25 firstTimestamp:2025-09-02T07:04:15Z lastTimestamp:2025-09-02T07:08:15Z reason:Unhealthy]}" +time="2025-09-02T07:08:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:11 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:15Z reason:Unhealthy]}" +time="2025-09-02T07:08:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:15Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/windows/framework.go:40]: Only supported for node OS distro [windows] (not custom) + +skipped: (0s) 2025-09-02T07:08:15 "[sig-windows] Hybrid cluster network for all supported CNIs should provide Internet connection for Linux containers [Feature:Networking-IPv4] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/740/767 "[sig-network] Services should test the lifecycle of an Endpoint [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:08:16 "[sig-api-machinery] ResourceQuota [Feature:PodPriority] should verify ResourceQuota's priority class scope (cpu, memory quota set) against a pod with same priority class. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/741/767 "[sig-network] Netpol API should support creating NetworkPolicy API operations [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:9 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:16Z reason:Unhealthy]}" +time="2025-09-02T07:08:16Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:12 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:16Z reason:Unhealthy]}" +passed: (7s) 2025-09-02T07:08:16 "[sig-node] Ephemeral Containers [NodeConformance] will start an ephemeral container in an existing pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/742/767 "[sig-node] Pods should contain environment variables for services [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:17Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-8898 pod:pfpod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (2.8s) 2025-09-02T07:08:17 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] BestEffort pod - try requesting memory, expect error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/743/767 "[sig-api-machinery] API priority and fairness should ensure that requests can't be drowned out (priority) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (900ms) 2025-09-02T07:08:17 "[sig-cli] Kubectl client Kubectl validation should detect unknown metadata fields of a typed object [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/744/767 "[sig-node] User Namespaces for Pod Security Standards [LinuxOnly] with UserNamespacesSupport and UserNamespacesPodSecurityStandards enabled should allow pod [Feature:UserNamespacesPodSecurityStandards] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:13 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:17Z reason:Unhealthy]}" +time="2025-09-02T07:08:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:10 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:17Z reason:Unhealthy]}" +passed: (8.1s) 2025-09-02T07:08:18 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, mixed containers - add limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/745/767 "[sig-cli] Kubectl client Kubectl patch should add annotations for pods in rc [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (800ms) 2025-09-02T07:08:18 "[sig-network] Services should test the lifecycle of an Endpoint [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/746/767 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should provide basic identity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:14 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:18Z reason:Unhealthy]}" +passed: (17.2s) 2025-09-02T07:08:18 "[sig-cli] Kubectl client Kubectl validation should detect unknown metadata fields in both the root and embedded object of a CR [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/747/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource with different stored version [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (55.7s) 2025-09-02T07:08:18 "[sig-node] Lifecycle Sleep Hook when create a pod with lifecycle hook using sleep action valid prestop hook using sleep action [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/748/767 "[sig-network] Networking Granular Checks: Pods should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:11 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:18Z reason:Unhealthy]}" +time="2025-09-02T07:08:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:24 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:08:19Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/apimachinery/flowcontrol.go:107]: skipping test until flakiness is resolved + +skipped: (500ms) 2025-09-02T07:08:19 "[sig-api-machinery] API priority and fairness should ensure that requests can't be drowned out (priority) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/749/767 "[sig-network] Services should serve endpoints on same port and different protocols [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:15 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:19Z reason:Unhealthy]}" +time="2025-09-02T07:08:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:12 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:19Z reason:Unhealthy]}" +time="2025-09-02T07:08:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:16 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:20Z reason:Unhealthy]}" +passed: (19.5s) 2025-09-02T07:08:20 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should honor timeout [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/750/767 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition getting/updating/patching custom resource definition status sub-resource works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:21Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:382eadac68 namespace:e2e-init-container-8471 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd]}" message="{BackOff Back-off restarting failed container init1 in pod pod-init-d106c8b0-c849-451d-8d86-21aef4f960fd_e2e-init-container-8471(611cab88-a827-497d-973a-93e18399970a) map[count:12 firstTimestamp:2025-09-02T07:06:04Z lastTimestamp:2025-09-02T07:08:21Z reason:BackOff]}" +time="2025-09-02T07:08:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:13 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:21Z reason:Unhealthy]}" +time="2025-09-02T07:08:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:17 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:21Z reason:Unhealthy]}" +time="2025-09-02T07:08:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:14 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:21Z reason:Unhealthy]}" +time="2025-09-02T07:08:22Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:18 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:22Z reason:Unhealthy]}" +passed: (3s) 2025-09-02T07:08:22 "[sig-cli] Kubectl client Kubectl patch should add annotations for pods in rc [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/751/767 "[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] should be able to convert from CR v1 to CR v2 [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:22Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:15 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:22Z reason:Unhealthy]}" +passed: (1s) 2025-09-02T07:08:22 "[sig-api-machinery] CustomResourceDefinition resources [Privileged:ClusterAdmin] Simple CustomResourceDefinition getting/updating/patching custom resource definition status sub-resource works [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/752/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny custom resource creation, update and deletion [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (5.1s) 2025-09-02T07:08:23 "[sig-network] Netpol API should support creating NetworkPolicy API operations [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/753/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating a mutating webhook should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6s) 2025-09-02T07:08:23 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container with cpu & memory requests + limits - decrease memory requests and increase CPU limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/754/767 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop http hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:23Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-resourcequota-8898 pod:burstable-pod]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:08:23Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:16 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:23Z reason:Unhealthy]}" +passed: (4.6s) 2025-09-02T07:08:23 "[sig-node] User Namespaces for Pod Security Standards [LinuxOnly] with UserNamespacesSupport and UserNamespacesPodSecurityStandards enabled should allow pod [Feature:UserNamespacesPodSecurityStandards] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/755/767 "[sig-node] [Feature:PodLifecycleSleepActionAllowZero] when create a pod with lifecycle hook using sleep action with a duration of zero seconds prestop hook using sleep action with zero duration [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:23Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:19 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:23Z reason:Unhealthy]}" +passed: (10s) 2025-09-02T07:08:23 "[sig-network] DNS should work with the pod containing more than 6 DNS search paths and longer than 256 search list characters [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/756/767 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - increase init container memory only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.2s) 2025-09-02T07:08:23 "[sig-network] DNS should provide DNS for services [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/757/767 "[sig-apps] Job should terminate job execution when the number of failed indexes exceeds maxFailedIndexes [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:24Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:17 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:24Z reason:Unhealthy]}" +time="2025-09-02T07:08:24Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:20 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:24Z reason:Unhealthy]}" +passed: (6.9s) 2025-09-02T07:08:25 "[sig-node] Pods should contain environment variables for services [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/758/767 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing mutating webhooks should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.6s) 2025-09-02T07:08:25 "[sig-node] Security Context when creating containers with AllowPrivilegeEscalation should not allow privilege escalation when false [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/759/767 "[sig-network] Netpol NetworkPolicy between server and client should support allow-all policy [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.9s) 2025-09-02T07:08:25 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, mixed containers - scale up cpu and memory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/760/767 "[sig-network] Netpol NetworkPolicy between server and client should allow ingress access from updated pod [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:18 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:25Z reason:Unhealthy]}" +passed: (49.2s) 2025-09-02T07:08:25 "[sig-network] Netpol NetworkPolicy between server and client should enforce multiple egress policies with egress allow-all policy taking precedence [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/761/767 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:25Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:25Z reason:Unhealthy]}" +time="2025-09-02T07:08:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:22 firstTimestamp:2025-09-02T07:08:06Z lastTimestamp:2025-09-02T07:08:26Z reason:Unhealthy]}" +time="2025-09-02T07:08:26Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:19 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:26Z reason:Unhealthy]}" +time="2025-09-02T07:08:27Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:20 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:27Z reason:Unhealthy]}" +passed: (1m22s) 2025-09-02T07:08:27 "[sig-autoscaling] [Feature:HPA] Horizontal pod autoscaling (scale resource: CPU) CustomResourceDefinition Should scale with a CRD targetRef [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/762/767 "[sig-node] Variable Expansion allow almost all printable ASCII characters as environment variable names [Feature:RelaxedEnvironmentVariableValidation] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:28Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:28Z reason:Unhealthy]}" +time="2025-09-02T07:08:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:25 firstTimestamp:2025-09-02T07:04:29Z lastTimestamp:2025-09-02T07:08:29Z reason:Unhealthy]}" +time="2025-09-02T07:08:29Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:29Z reason:Unhealthy]}" +passed: (17.1s) 2025-09-02T07:08:29 "[sig-api-machinery] ResourceQuota should verify ResourceQuota with best effort scope. [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/763/767 "[sig-node] NodeLease NodeLease should have OwnerReferences set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:ad25dd90ca namespace:e2e-webhook-6343 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:sample-webhook-deployment-5bdc5b565b-d7vjk]}" message="{Unhealthy Readiness probe failed: Get \"https://10.129.3.9:8444/readyz\": dial tcp 10.129.3.9:8444: connect: connection refused map[firstTimestamp:2025-09-02T07:08:30Z lastTimestamp:2025-09-02T07:08:30Z reason:Unhealthy]}" +time="2025-09-02T07:08:30Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:30Z reason:Unhealthy]}" +passed: (10.5s) 2025-09-02T07:08:30 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should mutate custom resource with different stored version [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/764/767 "[sig-node] Security Context should support seccomp unconfined on the pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:08:31 "[sig-node] NodeLease NodeLease should have OwnerReferences set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/765/767 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted startup probe fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:31Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:31Z reason:Unhealthy]}" +passed: (7.4s) 2025-09-02T07:08:31 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] patching/updating a mutating webhook should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/766/767 "[sig-node] Pods should be submitted and removed [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:08:31 "[sig-node] [Feature:PodLifecycleSleepActionAllowZero] when create a pod with lifecycle hook using sleep action with a duration of zero seconds prestop hook using sleep action with zero duration [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/767/767 "[sig-auth] SelfSubjectReview testing SSR in different API groups authentication/v1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:32Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:08:09Z lastTimestamp:2025-09-02T07:08:32Z reason:Unhealthy]}" +time="2025-09-02T07:08:32Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:b4e451fa06 namespace:e2e-webhook-4637 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:sample-webhook-deployment-5bdc5b565b-lsc5d]}" message="{Unhealthy Readiness probe failed: Get \"https://10.131.1.54:8444/readyz\": dial tcp 10.131.1.54:8444: connect: connection refused map[firstTimestamp:2025-09-02T07:08:32Z lastTimestamp:2025-09-02T07:08:32Z reason:Unhealthy]}" +passed: (8.6s) 2025-09-02T07:08:32 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] should be able to deny custom resource creation, update and deletion [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (9.3s) 2025-09-02T07:08:33 "[sig-api-machinery] CustomResourceConversionWebhook [Privileged:ClusterAdmin] should be able to convert from CR v1 to CR v2 [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:08:33 "[sig-node] Variable Expansion allow almost all printable ASCII characters as environment variable names [Feature:RelaxedEnvironmentVariableValidation] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:08:33 "[sig-auth] SelfSubjectReview testing SSR in different API groups authentication/v1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.6s) 2025-09-02T07:08:34 "[sig-api-machinery] AdmissionWebhook [Privileged:ClusterAdmin] listing mutating webhooks should work [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.8s) 2025-09-02T07:08:34 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:34Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:34Z reason:Unhealthy]}" +time="2025-09-02T07:08:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:35Z reason:Unhealthy]}" +time="2025-09-02T07:08:35Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:35Z reason:Unhealthy]}" +passed: (10.7s) 2025-09-02T07:08:36 "[sig-apps] Job should terminate job execution when the number of failed indexes exceeds maxFailedIndexes [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:08:36 "[sig-node] Security Context should support seccomp unconfined on the pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:36Z reason:Unhealthy]}" +passed: (4.8s) 2025-09-02T07:08:37 "[sig-node] Pods should be submitted and removed [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:37Z reason:Unhealthy]}" +time="2025-09-02T07:08:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:39Z reason:Unhealthy]}" +passed: (15s) 2025-09-02T07:08:39 "[sig-node] [Feature:SidecarContainers] Restartable Init Container Lifecycle Hook when create a pod with lifecycle hook should execute prestop http hook properly [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:08:39Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:39Z reason:Unhealthy]}" +passed: (19.9s) 2025-09-02T07:08:40 "[sig-network] Networking Granular Checks: Pods should function for node-pod communication: http [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:40Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-0]}" message="{Unhealthy Readiness probe failed: map[count:8 firstTimestamp:2025-09-02T07:08:34Z lastTimestamp:2025-09-02T07:08:40Z reason:Unhealthy]}" +time="2025-09-02T07:08:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:c69cb2e5d5 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.128.2.229:80/index.html\": dial tcp 10.128.2.229:80: connect: connection refused map[firstTimestamp:2025-09-02T07:08:41Z lastTimestamp:2025-09-02T07:08:41Z reason:Unhealthy]}" +passed: (31s) 2025-09-02T07:08:46 "[sig-apps] DisruptionController should evict ready pods with IfHealthyBudget UnhealthyPodEvictionPolicy [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m22s) 2025-09-02T07:08:46 "[sig-network] Networking Granular Checks: Services should function for endpoint-Service: http [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.1s) 2025-09-02T07:08:47 "[sig-node] Pod InPlace Resize Container [FeatureGate:InPlacePodVerticalScaling] [Beta] Burstable QoS pod, one container, one restartable init container - increase init container memory only [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m53s) 2025-09-02T07:08:48 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should not deadlock when a pod's predecessor fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.5s) 2025-09-02T07:08:50 "[sig-network] Services should serve endpoints on same port and different protocols [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:55Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:08:55Z reason:Unhealthy]}" +time="2025-09-02T07:08:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:08:56Z reason:Unhealthy]}" +time="2025-09-02T07:08:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:08:56Z reason:Unhealthy]}" +time="2025-09-02T07:08:57Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:08:57Z reason:Unhealthy]}" +time="2025-09-02T07:08:58Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:08:58Z reason:Unhealthy]}" +passed: (57.1s) 2025-09-02T07:08:59 "[sig-apps] Job should allow to use a pod failure policy to ignore failure matching on DisruptionTarget condition [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:08:59Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:08:59Z reason:Unhealthy]}" +passed: (33.4s) 2025-09-02T07:09:00 "[sig-network] Netpol NetworkPolicy between server and client should support allow-all policy [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:09:00Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:08:55Z lastTimestamp:2025-09-02T07:09:00Z reason:Unhealthy]}" +passed: (56.6s) 2025-09-02T07:09:01 "[sig-apps] CronJob should set the cronjob-scheduled-timestamp annotation on a job [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:09:03.920690 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (53.2s) 2025-09-02T07:09:05 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted with a exec \"cat /tmp/health\" liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:09:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:8da525f620 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.2.248:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:09:09Z lastTimestamp:2025-09-02T07:09:09Z reason:Unhealthy]}" +passed: (44.6s) 2025-09-02T07:09:11 "[sig-network] Netpol NetworkPolicy between server and client should allow ingress access from updated pod [Feature:NetworkPolicy] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:09:15Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:15Z reason:Unhealthy]}" +time="2025-09-02T07:09:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:16Z reason:Unhealthy]}" +time="2025-09-02T07:09:17Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[count:3 firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:17Z reason:Unhealthy]}" +passed: (1m13s) 2025-09-02T07:09:17 "[sig-node] Probing container should be restarted startup probe fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:09:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[count:4 firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:18Z reason:Unhealthy]}" +time="2025-09-02T07:09:18Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:061fa37757 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:ss-1]}" message="{Unhealthy Readiness probe failed: Get \"http://10.130.3.68:80/index.html\": dial tcp 10.130.3.68:80: connect: connection refused map[firstTimestamp:2025-09-02T07:09:18Z lastTimestamp:2025-09-02T07:09:18Z reason:Unhealthy]}" +time="2025-09-02T07:09:18Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:f0b9224bc2 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:ss-2]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.1.61:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:09:18Z lastTimestamp:2025-09-02T07:09:18Z reason:Unhealthy]}" +time="2025-09-02T07:09:19Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[count:5 firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:19Z reason:Unhealthy]}" +time="2025-09-02T07:09:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[count:6 firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:20Z reason:Unhealthy]}" +time="2025-09-02T07:09:20Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:48b32741e8 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-0]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.3.16:80/index.html\": context deadline exceeded (Client.Timeout exceeded while awaiting headers) map[firstTimestamp:2025-09-02T07:09:20Z lastTimestamp:2025-09-02T07:09:20Z reason:Unhealthy]}" +time="2025-09-02T07:09:21Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-4487 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-2]}" message="{Unhealthy Readiness probe failed: map[count:7 firstTimestamp:2025-09-02T07:09:15Z lastTimestamp:2025-09-02T07:09:21Z reason:Unhealthy]}" +passed: (1m13s) 2025-09-02T07:09:45 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should be restarted startup probe fails [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3m43s) 2025-09-02T07:09:46 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should perform rolling updates and roll backs of template modifications with PVCs [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:10:04.157747 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (2m45s) 2025-09-02T07:10:04 "[sig-network] Networking Granular Checks: Services should update endpoints: udp [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m19s) 2025-09-02T07:10:27 "[sig-network] Services should have session affinity timeout work for service with type clusterIP [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4m5s) 2025-09-02T07:10:36 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a /healthz http liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m32s) 2025-09-02T07:10:52 "[sig-apps] StatefulSet Basic StatefulSet functionality [StatefulSetBasic] should provide basic identity [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:11:04.418487 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (4m6s) 2025-09-02T07:11:55 "[sig-node] [Feature:SidecarContainers] Probing restartable init container should *not* be restarted with a exec \"cat /tmp/health\" liveness probe [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4m4s) 2025-09-02T07:11:55 "[sig-node] Probing container should *not* be restarted with a GRPC liveness probe [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/3/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/4/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/5/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/6/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/7/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/8/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/9/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/10/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/11/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/12/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/13/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/14/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/15/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/16/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/17/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/18/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/19/2201 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should not require VolumeAttach for drivers without attachment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/20/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/21/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/22/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/23/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/24/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/25/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/26/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/27/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/28/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/29/2201 "[sig-storage] CSI Mock fsgroup as mount option Delegate FSGroup to CSI driver [LinuxOnly] should pass FSGroup to CSI driver if it is set in pod and driver supports VOLUME_MOUNT_GROUP [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:11:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/30/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/31/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/32/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from None to File [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "nfs" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/33/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/34/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/35/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/36/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:11:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/37/2201 "[sig-storage] Projected combined should project all components that make up the projection API [Projection] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/38/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "local" does not support exec - skipping + +skipped: (700ms) 2025-09-02T07:12:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/39/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/40/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:01 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/41/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:01 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/42/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:02 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/43/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/44/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:02 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/45/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:02 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/46/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/47/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/48/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/49/2201 "[sig-storage] CSI Mock volume storage capacity storage capacity unlimited [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:12:03 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/50/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:04 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/51/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:12:04.646571 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:12:04 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/52/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:05 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/53/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:05 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/54/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:12:06 "[sig-storage] Projected combined should project all components that make up the projection API [Projection] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/55/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv delete reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:06 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/56/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/57/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:12:07 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/58/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:07 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/59/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/60/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:09 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/61/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/62/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/63/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:11 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/64/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:12 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/65/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:13 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/66/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/67/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/68/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:12:15 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/69/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21s) 2025-09-02T07:12:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/70/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:21 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/71/2201 "[sig-storage] Projected downwardAPI should update labels on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (23.9s) 2025-09-02T07:12:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/72/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:22 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/73/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.1s) 2025-09-02T07:12:23 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/74/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:12:23Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:311e222581 namespace:e2e-ephemeral-273 pod:inline-volume-zrg24]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-zrg24-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:12:23Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-273 pod:inline-volume-zrg24]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:12:23Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e77338cd41 namespace:e2e-ephemeral-273 pod:inline-volume-zrg24]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-273/inline-volume-zrg24 map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:24 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/75/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:12:25 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/76/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:25 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/77/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:26 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/78/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5s) 2025-09-02T07:12:26 "[sig-storage] Projected downwardAPI should update labels on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/79/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:12:27Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:d10bb04bd8 namespace:e2e-ephemeral-273 pod:inline-volume-tester-kkm7b]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-kkm7b-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:27 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/80/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:12:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/81/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/82/2201 "[sig-storage] PVC Protection Verify \"immediate\" deletion of a PVC that is not in active use by a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:28 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/83/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/84/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:30 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/85/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:30 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/86/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (32s) 2025-09-02T07:12:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/87/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:12:31 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/88/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (28s) 2025-09-02T07:12:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/89/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:12:32 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/90/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/91/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:32 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/92/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/93/2201 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] recovery should be possible for node-only expanded volumes with final error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/94/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:33 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/95/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (27.1s) 2025-09-02T07:12:34 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv delete reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/96/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:34 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/97/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:34 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/98/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:34 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/99/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:35 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/100/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:95]: Driver "nfs" does not support volume expansion - skipping + +skipped: (0s) 2025-09-02T07:12:35 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/101/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:35 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/102/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/103/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:36 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/104/2201 "[sig-storage] Projected downwardAPI should provide podname only [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/105/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:37 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/106/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:37 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/107/2201 "[sig-storage] PersistentVolumes-local [Volume type: block] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (40.1s) 2025-09-02T07:12:39 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should not require VolumeAttach for drivers without attachment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/108/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/109/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/110/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (43.7s) 2025-09-02T07:12:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/111/2201 "[sig-storage] Projected configMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/112/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:12:42 "[sig-storage] Projected downwardAPI should provide podname only [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/113/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:42 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/114/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/115/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (38.6s) 2025-09-02T07:12:43 "[sig-storage] CSI Mock volume storage capacity storage capacity unlimited [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/116/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/117/2201 "[sig-storage] Projected configMap should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:43 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/118/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:43 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/119/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:44 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/120/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:44 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/121/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "nfs" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:12:45 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/122/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/123/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:12:47 "[sig-storage] Projected configMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/124/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.2s) 2025-09-02T07:12:47 "[sig-storage] PersistentVolumes-local [Volume type: dir] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/125/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/126/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (46.5s) 2025-09-02T07:12:47 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/127/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/128/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10s) 2025-09-02T07:12:48 "[sig-storage] PersistentVolumes-local [Volume type: block] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/129/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/130/2201 "[sig-storage] Projected secret should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:48 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/131/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:12:49 "[sig-storage] Projected configMap should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/132/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:49 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/133/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:95]: Driver "nfs" does not support volume expansion - skipping + +skipped: (0s) 2025-09-02T07:12:49 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/134/2201 "[sig-storage] PersistentVolumes-expansion loopback local block volume should support online expansion on node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (47.9s) 2025-09-02T07:12:49 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/135/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:12:49 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/136/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:50 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/137/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:50 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/138/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test phase transition timestamp multiple updates [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/139/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/140/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:51 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/141/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:12:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-3793 pod:restored-pvc-tester-c5cbh]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:12:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-3793 pod:restored-pvc-tester-c5cbh]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/142/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.7s) 2025-09-02T07:12:51 "[sig-storage] PVC Protection Verify \"immediate\" deletion of a PVC that is not in active use by a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/143/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:51 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/144/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/145/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:12:52 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/146/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:12:52 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/147/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/148/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:52 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/149/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:12:53 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/150/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:12:53 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/151/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/152/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:53 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/153/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/154/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:12:54 "[sig-storage] Projected secret should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/155/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:54 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/156/2201 "[sig-storage] EmptyDir volumes volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:54 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/157/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:12:54 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/158/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:55 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/159/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:55 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/160/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:12:55 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/161/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/162/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/163/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/164/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/165/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/166/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:12:57 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/167/2201 "[sig-storage] Downward API volume should provide container's memory limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:12:57 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/168/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver emptydir doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:12:58 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/169/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:12:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/170/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:00 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/171/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:13:00 "[sig-storage] EmptyDir volumes volume on default medium should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/172/2201 "[sig-storage] EmptyDir volumes should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (10.1s) 2025-09-02T07:13:00 "[sig-storage] PersistentVolumes-expansion loopback local block volume should support online expansion on node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/173/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/174/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:01 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/175/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:01 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/176/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:13:03 "[sig-storage] Downward API volume should provide container's memory limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/177/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/178/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:13:04Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-4772 pod:pod-6a39ac65-9cbe-49ec-acdb-8ae0357ad4a3]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" + I0902 07:13:04.903031 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +time="2025-09-02T07:13:05Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-4772 pod:pod-6a39ac65-9cbe-49ec-acdb-8ae0357ad4a3]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:13:05Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-4772 pod:pod-6a39ac65-9cbe-49ec-acdb-8ae0357ad4a3]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (19.1s) 2025-09-02T07:13:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/179/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.4s) 2025-09-02T07:13:05 "[sig-storage] EmptyDir volumes should support (root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/180/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.5s) 2025-09-02T07:13:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/181/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:06 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/182/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:06 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/183/2201 "[sig-storage] ConfigMap updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m7s) 2025-09-02T07:13:06 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/184/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:06 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/185/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/186/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (400ms) 2025-09-02T07:13:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/187/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:13:07 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/188/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (44.7s) 2025-09-02T07:13:08 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/189/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/190/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/191/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/192/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/193/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv delete reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/194/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/195/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/196/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:13:10 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/197/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:10 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/198/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:13:10 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/199/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:13:10Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-4772 pod:pod-7790d6af-26cc-4d9b-8aba-2c6ae05ebe2e]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:13:11Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-4772 pod:pod-7790d6af-26cc-4d9b-8aba-2c6ae05ebe2e]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:11 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/200/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:11 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/201/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:489]: Driver "csi-hostpath" does not support filesystem resizing - skipping + +skipped: (500ms) 2025-09-02T07:13:11 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/202/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:13:11Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-4772 pod:pod-7790d6af-26cc-4d9b-8aba-2c6ae05ebe2e]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/203/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/204/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.9s) 2025-09-02T07:13:12 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/205/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/206/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/207/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:13:13Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:c1f205ca31 namespace:e2e-ephemeral-3574 pod:inline-volume-gj24j]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-gj24j-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:13:13Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3574 pod:inline-volume-gj24j]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:13:13Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:a7261b9376 namespace:e2e-ephemeral-3574 pod:inline-volume-gj24j]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-3574/inline-volume-gj24j map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:244]: Driver "nfs" does not support populating data from snapshot - skipping + +skipped: (400ms) 2025-09-02T07:13:13 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/208/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:13:13 "[sig-storage] ConfigMap updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/209/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/210/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:14 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/211/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:14 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/212/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/213/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/214/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:16 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/215/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/216/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:17 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/217/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:13:17Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:2f2e2e8315 namespace:e2e-ephemeral-3574 pod:inline-volume-tester-m9htv]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-m9htv-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/218/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:18 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/219/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.7s) 2025-09-02T07:13:18 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/220/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:19 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/221/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:19 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/222/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:19 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/223/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:20 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/224/2201 "[sig-storage] EmptyDir wrapper volumes should not conflict [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:13:23 "[sig-storage] EmptyDir wrapper volumes should not conflict [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/225/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/226/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:25 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/227/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/228/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:189]: Driver "csi-hostpath" does not define supported mount option - skipping + +skipped: (400ms) 2025-09-02T07:13:26 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/229/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.7s) 2025-09-02T07:13:27 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/230/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:27 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/231/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (36.9s) 2025-09-02T07:13:28 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test phase transition timestamp multiple updates [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/232/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:13:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/233/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/234/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:13:29 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/235/2201 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:95]: Driver "nfs" does not support volume expansion - skipping + +skipped: (0s) 2025-09-02T07:13:29 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/236/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/237/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/238/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/239/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/240/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:13:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/241/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:31 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/242/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver emptydir doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:13:32 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/243/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/244/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:32 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/245/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/246/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:13:33 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/247/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:34 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/248/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25s) 2025-09-02T07:13:34 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv delete reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/249/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:13:34 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/250/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/251/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.2s) 2025-09-02T07:13:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/252/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/253/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/254/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:36 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/255/2201 "[sig-storage] CSI Mock volume snapshot CSI Snapshot Controller metrics [Feature:VolumeSnapshotDataSource] snapshot controller should emit pre-provisioned CreateSnapshot, CreateSnapshotAndReady, and DeleteSnapshot metrics [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/256/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/capacity.go:77]: Driver csi-hostpath doesn't publish storage capacity -- skipping + +skipped: (0s) 2025-09-02T07:13:36 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/257/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/258/2201 "[sig-storage] Projected downwardAPI should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:37 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/259/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/260/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:38 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/261/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/262/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:39 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/263/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:39 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/264/2201 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:40 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/265/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (37.8s) 2025-09-02T07:13:40 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/266/2201 "[sig-storage] EmptyDir volumes should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/267/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:42 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/268/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should unstage RWOP volume when starting a second pod with different SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:13:42 "[sig-storage] Projected downwardAPI should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/269/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/270/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:44 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/271/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:13:45 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/272/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/273/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:13:45 "[sig-storage] EmptyDir volumes should support (root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/274/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33s) 2025-09-02T07:13:46 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/275/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:46 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/276/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:46 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/277/2201 "[sig-storage] EmptyDir volumes pod should support memory backed volumes of specified size [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/278/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:47 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/279/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:47 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/280/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m47s) 2025-09-02T07:13:47 "[sig-storage] CSI Mock fsgroup as mount option Delegate FSGroup to CSI driver [LinuxOnly] should pass FSGroup to CSI driver if it is set in pod and driver supports VOLUME_MOUNT_GROUP [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/281/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:47 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/282/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping +started: 0/283/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + + +skipped: (0s) 2025-09-02T07:13:48 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/284/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (30.1s) 2025-09-02T07:13:48 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/285/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:48 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/286/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/287/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:49 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/288/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/289/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:49 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/290/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:49 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/291/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:49 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/292/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.8s) 2025-09-02T07:13:50 "[sig-storage] EmptyDir volumes pod should support memory backed volumes of specified size [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/293/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m49s) 2025-09-02T07:13:50 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from None to File [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/294/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:50 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/295/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:13:50 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/296/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:50 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/297/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/298/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/299/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:51 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/300/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:51 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/301/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:13:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/302/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/303/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/304/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/305/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/306/2201 "[sig-storage] CSI Mock volume service account token CSIServiceAccountToken token should be plumbed down when csiServiceAccountTokenEnabled=true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/307/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/308/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/309/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:53 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/310/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:53 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/311/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/312/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/313/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/314/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/315/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/316/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:54 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/317/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:54 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/318/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:54 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/319/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:55 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/320/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m39s) 2025-09-02T07:13:55 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/321/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:13:55 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/322/2201 "[sig-storage] EmptyDir volumes should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/323/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:13:56 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/324/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:56 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/325/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:56 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/326/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/327/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (57.9s) 2025-09-02T07:13:56 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/328/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.2s) 2025-09-02T07:13:56 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/329/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/330/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:57 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/331/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/332/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:13:57 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/333/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:57 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/334/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPathSymlink doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:13:57 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/335/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:13:57 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/336/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:13:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/337/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:58 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/338/2201 "[sig-storage] Projected secret should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:13:58 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/339/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:13:58 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/340/2201 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] new files should be created with FSGroup ownership when container is root [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:13:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/341/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (400ms) 2025-09-02T07:13:59 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/342/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/csimock/csi_snapshot.go:324]: Snapshot controller metrics not found -- skipping + +skipped: (22.7s) 2025-09-02T07:13:59 "[sig-storage] CSI Mock volume snapshot CSI Snapshot Controller metrics [Feature:VolumeSnapshotDataSource] snapshot controller should emit pre-provisioned CreateSnapshot, CreateSnapshotAndReady, and DeleteSnapshot metrics [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/343/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:13:59 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/344/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/345/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/346/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/347/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/348/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:14:01 "[sig-storage] EmptyDir volumes should support (non-root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/349/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:01 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/350/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/351/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (48.3s) 2025-09-02T07:14:01 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/352/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:02 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/353/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:02 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/354/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:02 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/355/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:02 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/356/2201 "[sig-storage] EmptyDir volumes volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/357/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/358/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:14:03 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/359/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/360/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/361/2201 "[sig-storage] Subpath Atomic writer volumes should support subpaths with configmap pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:14:03 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/362/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:14:04 "[sig-storage] Projected secret should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/363/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:14:04 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] new files should be created with FSGroup ownership when container is root [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/364/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/365/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:04 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/366/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:14:05.124023 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/367/2201 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] volume on tmpfs should have the correct mode using FSGroup [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.2s) 2025-09-02T07:14:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/368/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/369/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:14:06 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/370/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/371/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/372/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:14:07 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/373/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PVC and non-pre-bound PV: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:07 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/374/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/375/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:14:08 "[sig-storage] EmptyDir volumes volume on tmpfs should have the correct mode [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/376/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:08 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/377/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:14:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/378/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:09 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/379/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/380/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for CSI driver that does not support SELinux mount [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:14:11 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] volume on tmpfs should have the correct mode using FSGroup [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/381/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:12 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/382/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:13 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/383/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/384/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.9s) 2025-09-02T07:14:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/385/2201 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] files with FSGroup ownership should support (root,0644,tmpfs) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.4s) 2025-09-02T07:14:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/386/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.8s) 2025-09-02T07:14:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/387/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.5s) 2025-09-02T07:14:19 "[sig-storage] PersistentVolumes-local [Volume type: dir] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/388/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:20 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/389/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:20 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/390/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:20 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/391/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv retain reclaim policy when deleting pvc then pv [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:14:21 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/392/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/393/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (14.8s) 2025-09-02T07:14:23 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PVC and non-pre-bound PV: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/394/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:24 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/395/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/396/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:14:24 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] files with FSGroup ownership should support (root,0644,tmpfs) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/397/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:14:25 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/398/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:25 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/399/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.4s) 2025-09-02T07:14:25 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/400/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:25 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/401/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/402/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:26 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/403/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:26 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/404/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:26 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/405/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:27 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/406/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:14:27 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/407/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:27 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/408/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:27 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/409/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:28 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/410/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/411/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:14:28 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/412/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/413/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:29 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/414/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.8s) 2025-09-02T07:14:29 "[sig-storage] Subpath Atomic writer volumes should support subpaths with configmap pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/415/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:29 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/416/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:30 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/417/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/418/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/419/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/420/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:31 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/421/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/422/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:14:31 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/423/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:32 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/424/2201 "[sig-storage] Projected secret should be able to mount in a volume regardless of a different secret existing with same name in different namespace [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:32 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/425/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/426/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:33 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/427/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:33 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/428/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (40.2s) 2025-09-02T07:14:33 "[sig-storage] CSI Mock volume service account token CSIServiceAccountToken token should be plumbed down when csiServiceAccountTokenEnabled=true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/429/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:34 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/430/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/431/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:34 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/432/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:14:35 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/433/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/434/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:35 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/435/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/436/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:14:36 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/437/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/438/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:37 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/439/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/440/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/441/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.1s) 2025-09-02T07:14:38 "[sig-storage] Projected secret should be able to mount in a volume regardless of a different secret existing with same name in different namespace [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/442/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:38 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/443/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/444/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/445/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/446/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/447/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:39 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/448/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:40 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/449/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/450/2201 "[sig-storage] EmptyDir volumes should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:40 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/451/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:41 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/452/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.4s) 2025-09-02T07:14:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/453/2201 "[sig-storage] Projected configMap should be consumable from pods in volume as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/454/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:42 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/455/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:14:42 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/456/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:43 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/457/2201 "[sig-storage] Projected configMap should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (36s) 2025-09-02T07:14:43 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/458/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/459/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:14:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/460/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:14:45 "[sig-storage] EmptyDir volumes should support (root,0666,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/461/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.1s) 2025-09-02T07:14:46 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/462/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m0s) 2025-09-02T07:14:46 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/463/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:14:46 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/464/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:14:46 "[sig-storage] Projected configMap should be consumable from pods in volume as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/465/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:14:47 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/466/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/467/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/468/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/469/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:48 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/470/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:48 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/471/2201 "[sig-storage] Secrets should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:48 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/472/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:48 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/473/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:14:49 "[sig-storage] Projected configMap should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/474/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:49 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/475/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:14:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/476/2201 "[sig-storage] PersistentVolumes CSI Conformance should apply changes to a pv/pvc status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/snapshottable.go:252]: volume type "GenericEphemeralVolume" is ephemeral + +skipped: (400ms) 2025-09-02T07:14:50 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/477/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.3s) 2025-09-02T07:14:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/478/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:51 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/479/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:14:52 "[sig-storage] PersistentVolumes CSI Conformance should apply changes to a pv/pvc status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/480/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:52 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/481/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:52 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/482/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:53 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/483/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:53 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/484/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:14:53 "[sig-storage] Secrets should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/485/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:53 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/486/2201 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should expand volume by restarting pod if attach=off, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/487/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.1s) 2025-09-02T07:14:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/488/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:55 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/489/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:601]: Driver "nfs" does not support cloning - skipping + +skipped: (600ms) 2025-09-02T07:14:55 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/490/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/491/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/492/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/493/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/494/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:56 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/495/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/496/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:14:57 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/497/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.9s) 2025-09-02T07:14:57 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/498/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/499/2201 "[sig-storage] PV Protection Verify that PV bound to a PVC is not removed immediately [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:14:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/500/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:14:58 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/501/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:14:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/502/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/ephemeral.go:333]: Multiple generic ephemeral volumes with immediate binding may cause pod startup failures when the volumes get created in separate topology segments. + +skipped: (500ms) 2025-09-02T07:14:59 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/503/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:14:59 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/504/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/505/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/506/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:15:03 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/507/2201 "[sig-storage] PersistentVolumes-local Pod with node different from PV's NodeAffinity should fail scheduling due to different NodeAffinity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m29s) 2025-09-02T07:15:03 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] recovery should be possible for node-only expanded volumes with final error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/508/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/509/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.7s) 2025-09-02T07:15:04 "[sig-storage] PV Protection Verify that PV bound to a PVC is not removed immediately [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/510/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.5s) 2025-09-02T07:15:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/511/2201 "[sig-storage] Secrets should be immutable if `immutable` field is set [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + + I0902 07:15:05.548076 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (33.3s) 2025-09-02T07:15:05 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/512/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:05 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/513/2201 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:06 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/514/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:15:07 "[sig-storage] Secrets should be immutable if `immutable` field is set [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/515/2201 "[sig-storage] CSI Mock workload info CSI workload information using mock driver should not be passed when podInfoOnMount=false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/516/2201 "[sig-storage] CSINodes CSI Conformance should run through the lifecycle of a csinode [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:07 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/517/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m25s) 2025-09-02T07:15:08 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should unstage RWOP volume when starting a second pod with different SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/518/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:08 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/519/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:15:09 "[sig-storage] CSINodes CSI Conformance should run through the lifecycle of a csinode [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/520/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.4s) 2025-09-02T07:15:09 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/521/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3175ec2237 namespace:e2e-persistent-local-volumes-test-1297 pod:pod-c5b90036-5544-487f-bcee-8a26b73b929b]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) didn't match PersistentVolume's node affinity, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:09Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3175ec2237 namespace:e2e-persistent-local-volumes-test-1297 pod:pod-c5b90036-5544-487f-bcee-8a26b73b929b]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) didn't match PersistentVolume's node affinity, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:15:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/522/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/523/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:11 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/524/2201 "[sig-storage] EmptyDir volumes pod should support shared volumes between containers [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/525/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:15:11 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/526/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:11Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3175ec2237 namespace:e2e-persistent-local-volumes-test-1297 pod:pod-c5b90036-5544-487f-bcee-8a26b73b929b]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) didn't match PersistentVolume's node affinity, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (7.1s) 2025-09-02T07:15:11 "[sig-storage] PersistentVolumes-local Pod with node different from PV's NodeAffinity should fail scheduling due to different NodeAffinity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/527/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/528/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/529/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:13 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/530/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:15:13 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/531/2201 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity disabled [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/532/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:14 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/533/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:15:14 "[sig-storage] EmptyDir volumes pod should support shared volumes between containers [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/534/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/535/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/536/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.2s) 2025-09-02T07:15:15 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/537/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:16 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/538/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/539/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:15:16 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/540/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/541/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:15:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/542/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:17Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:d7f0d72470 namespace:e2e-ephemeral-5097 pod:inline-volume-x88zq]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-x88zq-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:17Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:1ce7d4c182 namespace:e2e-ephemeral-5097 pod:inline-volume-x88zq]}" message="{FailedScheduling running PreFilter plugin \"VolumeBinding\": error getting PVC \"e2e-ephemeral-5097/inline-volume-x88zq-my-volume\": could not find v1.PersistentVolumeClaim \"e2e-ephemeral-5097/inline-volume-x88zq-my-volume\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (28.4s) 2025-09-02T07:15:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/543/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:15:18 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/544/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:19 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/545/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m7s) 2025-09-02T07:15:19 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for CSI driver that does not support SELinux mount [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/546/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:19 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/547/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/548/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:15:20 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/549/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/550/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.3s) 2025-09-02T07:15:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/551/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/552/2201 "[sig-storage] Subpath Atomic writer volumes should support subpaths with configmap pod with mountPath of existing file [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:15:21 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/553/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv delete reclaim policy when deleting pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:21 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/554/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/555/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/556/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/557/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/558/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/559/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:15:26 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/560/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/ephemeral.go:234]: Driver "nfs" does not support online volume expansion - skipping + +skipped: (8.9s) 2025-09-02T07:15:26 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/561/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:15:26 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/562/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:27 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/563/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:27 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/564/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:27 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/565/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/566/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/567/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (400ms) 2025-09-02T07:15:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/568/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.2s) 2025-09-02T07:15:29 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/569/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:29 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/570/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:15:29 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/571/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:30 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/572/2201 "[sig-storage] EmptyDir volumes should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumelimits.go:97]: Driver nfs does not support volume limits + +skipped: (0s) 2025-09-02T07:15:30 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/573/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/574/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/575/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/576/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.1s) 2025-09-02T07:15:31 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/577/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:15:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/578/2201 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should not expand volume if resizingOnDriver=off, resizingOnSC=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/579/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:32 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/580/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/581/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:33 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/582/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:34 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/583/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/584/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:15:34 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/585/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.8s) 2025-09-02T07:15:34 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/586/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:15:35 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/587/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/588/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (400ms) 2025-09-02T07:15:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/589/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:15:35 "[sig-storage] EmptyDir volumes should support (root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/590/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:15:36 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/591/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/592/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/593/2201 "[sig-storage] CSI Mock volume snapshot CSI Volume Snapshots [Feature:VolumeSnapshotDataSource] volumesnapshotcontent and pvc in Bound state with deletion timestamp set should not get deleted while snapshot finalizer exists [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:37 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/594/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/595/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/596/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:39 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/597/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/598/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:40 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/599/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:15:41 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/600/2201 "[sig-storage] ConfigMap should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (24.8s) 2025-09-02T07:15:41 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/601/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/602/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:15:42 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/603/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:42 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/604/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:43 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/605/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:43 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/606/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/607/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:45 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/608/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/609/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/610/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.4s) 2025-09-02T07:15:46 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/611/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:15:46 "[sig-storage] ConfigMap should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/612/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:46 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/613/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/614/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/615/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.8s) 2025-09-02T07:15:47 "[sig-storage] Subpath Atomic writer volumes should support subpaths with configmap pod with mountPath of existing file [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/616/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:15:48 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/617/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:15:48 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/618/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/619/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.8s) 2025-09-02T07:15:48 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/620/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:48 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/621/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:49 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/622/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/623/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:49 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/624/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m46s) 2025-09-02T07:15:49 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/625/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/626/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/627/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (27.4s) 2025-09-02T07:15:50 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv delete reclaim policy when deleting pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/628/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:50 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/629/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:15:51 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/630/2201 "[sig-storage] Projected configMap should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (1m29s) 2025-09-02T07:15:51 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv retain reclaim policy when deleting pvc then pv [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/631/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:41e5ef58f5 namespace:e2e-ephemeral-8638 pod:inline-volume-f7hfq]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-f7hfq-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:51 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/632/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:9fc2b2c1b9 namespace:e2e-ephemeral-8638 pod:inline-volume-f7hfq]}" message="{FailedScheduling running PreFilter plugin \"VolumeBinding\": error getting PVC \"e2e-ephemeral-8638/inline-volume-f7hfq-my-volume\": could not find v1.PersistentVolumeClaim \"e2e-ephemeral-8638/inline-volume-f7hfq-my-volume\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/633/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:51 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/634/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/635/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:15:52 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/636/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:15:52 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/637/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy changes using mock driver should honor pv reclaim policy after it is changed from retain to deleted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/638/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:15:53 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/639/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:15:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/640/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:15:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/641/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should not update fsGroup if update from File to None [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-9585 pod:restored-pvc-tester-nx6tt]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-9585 pod:restored-pvc-tester-nx6tt]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-9585 pod:restored-pvc-tester-nx6tt]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:2ba5873e3f namespace:e2e-ephemeral-8638 pod:inline-volume-tester-6897z]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-6897z-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:2ba5873e3f namespace:e2e-ephemeral-8638 pod:inline-volume-tester-6897z]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-6897z-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.6s) 2025-09-02T07:15:57 "[sig-storage] Projected configMap should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/642/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (49.6s) 2025-09-02T07:15:57 "[sig-storage] CSI Mock workload info CSI workload information using mock driver should not be passed when podInfoOnMount=false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/643/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/644/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:15:59Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:6ac8d1c3c5 namespace:e2e-ephemeral-5575 pod:inline-volume-86vqt]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-86vqt-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:59Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:6ac8d1c3c5 namespace:e2e-ephemeral-5575 pod:inline-volume-86vqt]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-86vqt-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:15:59Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:1ec89691be namespace:e2e-ephemeral-5575 pod:inline-volume-86vqt]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-5575/inline-volume-86vqt map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:15:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/645/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:16:02Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:6036e31692 namespace:e2e-ephemeral-5575 pod:inline-volume-tester-m8qpx]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-m8qpx-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (12.8s) 2025-09-02T07:16:04 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/646/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/647/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:16:05.845137 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (13.3s) 2025-09-02T07:16:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/648/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/649/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m11s) 2025-09-02T07:16:06 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should expand volume by restarting pod if attach=off, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/650/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.5s) 2025-09-02T07:16:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/651/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:07 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/652/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:16:07 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/653/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/654/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:16:08 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/655/2201 "[sig-storage] Mounted volume expand [Feature:StorageProvider] Should verify mounted devices can be resized [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/656/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (54.4s) 2025-09-02T07:16:08 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity disabled [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/657/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/658/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/659/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:16:10 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/660/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:16:10 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/661/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:16:11 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/662/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/663/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:12 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/664/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/665/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/666/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/667/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/668/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:15 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/669/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy [LinuxOnly] should modify fsGroup if fsGroupPolicy=default [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:15 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/670/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (14.8s) 2025-09-02T07:16:15 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/671/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/672/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:16:16 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/673/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/674/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.1s) 2025-09-02T07:16:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/675/2201 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should not have staging_path missing in node expand volume pod if attach=on, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:16:18 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/676/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/677/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11s) 2025-09-02T07:16:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/678/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/679/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/680/2201 "[sig-storage] Downward API volume should provide container's memory request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/681/2201 "[sig-storage] StorageClasses CSI Conformance should run through the lifecycle of a StorageClass [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (31.2s) 2025-09-02T07:16:22 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/682/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:23 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/683/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:16:23 "[sig-storage] StorageClasses CSI Conformance should run through the lifecycle of a StorageClass [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/684/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (36s) 2025-09-02T07:16:24 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/685/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:24 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/686/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:24 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/687/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:25 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/688/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/689/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/690/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/691/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:26 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/692/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/693/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:16:26 "[sig-storage] Downward API volume should provide container's memory request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/694/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:16:27 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/695/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/696/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/697/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/698/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:28 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/699/2201 "[sig-storage] CSI Mock volume storage capacity storage capacity exhausted, late binding, with topology [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:16:29Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2633 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:16:29Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2633 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/700/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/701/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:16:30Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2633 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:31 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/702/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/703/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:33 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/704/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (34.8s) 2025-09-02T07:16:33 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/705/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/706/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/707/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from detault to File [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:35 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/708/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:36 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/709/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.1s) 2025-09-02T07:16:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/710/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/711/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:16:37Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:48596ea69d namespace:e2e-csi-mock-volumes-capacity-3941 pod:pvc-volume-tester-h9c9p]}" message="{FailedScheduling running PreBind plugin \"VolumeBinding\": binding volumes: provisioning failed for PVC \"pvc-99j9j\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:16:37 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/712/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/713/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:16:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/714/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:39 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/715/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/716/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:41 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/717/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33s) 2025-09-02T07:16:42 "[sig-storage] Mounted volume expand [Feature:StorageProvider] Should verify mounted devices can be resized [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/718/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:42 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/719/2201 "[sig-storage] Projected downwardAPI should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/720/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (52.1s) 2025-09-02T07:16:45 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/721/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:16:47 "[sig-storage] Projected downwardAPI should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/722/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:16:48 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/723/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.1s) 2025-09-02T07:16:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/724/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:16:53 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/725/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:485]: Test is not valid for Block volume mode - skipping + +skipped: (400ms) 2025-09-02T07:16:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/726/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (27.2s) 2025-09-02T07:16:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/727/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:16:55 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/728/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:16:56 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/729/2201 "[sig-storage] CSI Mock volume expansion CSI online volume expansion with secret should expand volume without restarting pod if attach=on, nodeExpansion=on, csiNodeExpandSecret=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:56 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/730/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:16:57 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/731/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:16:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/732/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:16:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2633 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:16:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2633 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:16:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2633 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (14.8s) 2025-09-02T07:17:01 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/733/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:17:01 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/734/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/735/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.8s) 2025-09-02T07:17:02 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/736/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "local" does not support exec - skipping + +skipped: (400ms) 2025-09-02T07:17:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/737/2201 "[sig-storage] EmptyDir volumes should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/738/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/739/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/740/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:04 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/741/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:04 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/742/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:05 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/743/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:05 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/744/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.3s) 2025-09-02T07:17:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/745/2201 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should require VolumeAttach for ephemermal volume and drivers with attachment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "csi-hostpath" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:17:06 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/746/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:17:06.126544 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/747/2201 "[sig-storage] Projected downwardAPI should provide container's cpu limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (7.4s) 2025-09-02T07:17:06 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/748/2201 "[sig-storage] HostPath should give a volume the correct mode [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:06 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/749/2201 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:17:08 "[sig-storage] EmptyDir volumes should support (non-root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/750/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:17:09 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/751/2201 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:17:12 "[sig-storage] HostPath should give a volume the correct mode [LinuxOnly] [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/752/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:17:12 "[sig-storage] Projected downwardAPI should provide container's cpu limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/753/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5s) 2025-09-02T07:17:13 "[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] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/754/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:13Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:729836bfe5 namespace:e2e-csi-mock-volumes-attach-9401 pod:pvc-volume-tester-k2clm]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"pvc-volume-tester-k2clm-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:13Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:729836bfe5 namespace:e2e-csi-mock-volumes-attach-9401 pod:pvc-volume-tester-k2clm]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"pvc-volume-tester-k2clm-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:13 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/755/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:13 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/756/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:17:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/757/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:14 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/758/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/759/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:17:14 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/760/2201 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity used, no capacity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (59s) 2025-09-02T07:17:15 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy [LinuxOnly] should modify fsGroup if fsGroupPolicy=default [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/761/2201 "[sig-storage] Projected downwardAPI should provide podname as non-root with fsgroup and defaultMode [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/762/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:15 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/763/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:15 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/764/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:16 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/765/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/ephemeral.go:184]: raw block volumes cannot be read-only + +skipped: (400ms) 2025-09-02T07:17:16 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/766/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:17:18 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/767/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:19 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/768/2201 "[sig-storage] EmptyDir volumes should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:17:20 "[sig-storage] Projected downwardAPI should provide podname as non-root with fsgroup and defaultMode [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/769/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:21 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/770/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:22 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/771/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m29s) 2025-09-02T07:17:23 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy changes using mock driver should honor pv reclaim policy after it is changed from retain to deleted [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/772/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:24 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/773/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:17:25 "[sig-storage] EmptyDir volumes should support (non-root,0644,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/774/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/775/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/776/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:17:26 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/777/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:27Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:0a58f459f1 namespace:e2e-csi-mock-volumes-capacity-834 pod:pvc-volume-tester-wmwqr]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) did not have enough free storage, 7 node(s) didn't satisfy plugin(s) [NodeAffinity]. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (1m2s) 2025-09-02T07:17:29 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/778/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13s) 2025-09-02T07:17:29 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/779/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/780/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:30 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/781/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:31 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/782/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/783/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/784/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/785/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m13s) 2025-09-02T07:17:32 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should not have staging_path missing in node expand volume pod if attach=on, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/786/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:33 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/787/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:33 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/788/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m4s) 2025-09-02T07:17:34 "[sig-storage] CSI Mock volume storage capacity storage capacity exhausted, late binding, with topology [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/789/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.2s) 2025-09-02T07:17:34 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/790/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:34 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/791/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/792/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/793/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:35 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/794/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:35 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/795/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:17:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/796/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/797/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/798/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/799/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:17:36 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should not update fsGroup if update from File to None [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/800/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:37 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/801/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:37 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/802/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/803/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:38 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/804/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for Pod without SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/805/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:38Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8517 pod:pvc-volume-tester-writer-gdbnq]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/806/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/807/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:39 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/808/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e644674a18 namespace:e2e-ephemeral-3420 pod:inline-volume-r7ftp]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-r7ftp-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e644674a18 namespace:e2e-ephemeral-3420 pod:inline-volume-r7ftp]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-r7ftp-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:f0339a365a namespace:e2e-ephemeral-3420 pod:inline-volume-r7ftp]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-3420/inline-volume-r7ftp map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/809/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8517 pod:pvc-volume-tester-writer-gdbnq]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8517 pod:pvc-volume-tester-writer-gdbnq]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/810/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:41 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/811/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:42 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/812/2201 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (400ms) 2025-09-02T07:17:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/813/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:afa0bb4ed0 namespace:e2e-ephemeral-3420 pod:inline-volume-tester-n5kcs]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-n5kcs-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3420 pod:inline-volume-tester-n5kcs]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3420 pod:inline-volume-tester-n5kcs]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3420 pod:inline-volume-tester-n5kcs]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (28.1s) 2025-09-02T07:17:43 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity used, no capacity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/814/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/815/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3420 pod:inline-volume-tester-n5kcs]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (37.3s) 2025-09-02T07:17:43 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should require VolumeAttach for ephemermal volume and drivers with attachment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/816/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.4s) 2025-09-02T07:17:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/817/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:17:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/818/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/819/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/820/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/821/2201 "[sig-storage] CSI Mock volume service account token CSIServiceAccountToken token should not be plumbed down when CSIDriver is not deployed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:46 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/822/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:46 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/823/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:46 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/824/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:47 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/825/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:47 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/826/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:17:47 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/827/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.2s) 2025-09-02T07:17:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/828/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.5s) 2025-09-02T07:17:48 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/829/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:48 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/830/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/831/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:49 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/832/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:49 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/833/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:49 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/834/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:50 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/835/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/836/2201 "[sig-storage] Downward API volume should update labels on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:50 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/837/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.2s) 2025-09-02T07:17:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/838/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.4s) 2025-09-02T07:17:51 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/839/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:250]: Driver "csi-hostpath" does not support ROX access mode - skipping + +skipped: (400ms) 2025-09-02T07:17:51 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/840/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:17:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/841/2201 "[sig-storage] Projected downwardAPI should provide podname as non-root with fsgroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:604]: Driver "csi-hostpath" does not support ROX access mode - skipping + +skipped: (500ms) 2025-09-02T07:17:51 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/842/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPath doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:17:51 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/843/2201 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/844/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:17:52 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/845/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:52 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/846/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/847/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:53Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:dbbe4a5981 namespace:e2e-ephemeral-3420 pod:inline-volume-tester2-wc6fd]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-wc6fd-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:53Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:dbbe4a5981 namespace:e2e-ephemeral-3420 pod:inline-volume-tester2-wc6fd]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-wc6fd-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:53Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3420 pod:inline-volume-tester2-wc6fd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:53 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/848/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/849/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:55 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/850/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:17:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2783 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2783 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:17:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2783 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:17:55 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/851/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:17:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/852/2201 "[sig-storage] Projected secret should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:17:57 "[sig-storage] Projected downwardAPI should provide podname as non-root with fsgroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/853/2201 "[sig-storage] ConfigMap should be consumable from pods in volume as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.3s) 2025-09-02T07:17:57 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/854/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:17:58 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/855/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:17:58 "[sig-storage] Downward API volume should update labels on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/856/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:59 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/857/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:17:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/858/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:18:00 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/859/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.6s) 2025-09-02T07:18:00 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/860/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:18:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/861/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/862/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:01 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/863/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:18:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/864/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:02 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/865/2201 "[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 2 PVs and 4 PVCs: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:02 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/866/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:18:02 "[sig-storage] Projected secret should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/867/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:02 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/868/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:18:03 "[sig-storage] ConfigMap should be consumable from pods in volume as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/869/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/870/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:03 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/871/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/872/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/873/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/874/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:05 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/875/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/876/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:565]: Driver "nfs" does not support cloning - skipping + +skipped: (500ms) 2025-09-02T07:18:05 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/877/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:18:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/878/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/879/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:18:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/880/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:18:06.400395 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:06 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/881/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/882/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/883/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] read-write-once-pod [MinimumKubeletVersion:1.27] should block a second pod from using an in-use ReadWriteOncePod volume on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/884/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:07 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/885/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "local" does not support exec - skipping + +skipped: (400ms) 2025-09-02T07:18:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/886/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:08 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/887/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "local" does not support exec - skipping + +skipped: (400ms) 2025-09-02T07:18:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/888/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:10 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/889/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/890/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:11 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/891/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/892/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:13 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/893/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:14 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/894/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPath doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:18:15 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/895/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv delete reclaim policy when deleting pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:18:16 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from detault to File [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/896/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/897/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.4s) 2025-09-02T07:18:18 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/898/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/899/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/900/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:250]: Driver "csi-hostpath" does not support ROX access mode - skipping + +skipped: (400ms) 2025-09-02T07:18:19 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/901/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:20 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/902/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:18:20 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/903/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:18:20Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2783 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:18:20Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2783 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:18:20Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-2783 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:21 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/904/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.5s) 2025-09-02T07:18:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/905/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:22 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/906/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/907/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/908/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/909/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (45.5s) 2025-09-02T07:18:25 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/910/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (500ms) 2025-09-02T07:18:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/911/2201 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (31.2s) 2025-09-02T07:18:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/912/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:18:26 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/913/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/914/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:27 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/915/2201 "[sig-storage] Downward API volume should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/916/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:18:28 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/917/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (41.1s) 2025-09-02T07:18:28 "[sig-storage] CSI Mock volume service account token CSIServiceAccountToken token should not be plumbed down when CSIDriver is not deployed [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/918/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:29 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/919/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/snapshottable.go:155]: volume type "DynamicPV" is not ephemeral + +skipped: (400ms) 2025-09-02T07:18:29 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/920/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should pass SELinux mount option for RWOP volume and Pod with SELinux context set [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/921/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:18:30 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/922/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (27.2s) 2025-09-02T07:18:30 "[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 2 PVs and 4 PVCs: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/923/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:30 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/924/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/925/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:31 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/926/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:18:32 "[sig-storage] Downward API volume should set DefaultMode on files [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/927/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/928/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:33 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/929/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/930/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.2s) 2025-09-02T07:18:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/931/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:18:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/932/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:18:35 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/933/2201 "[sig-storage] Projected configMap updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:36 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/934/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.9s) 2025-09-02T07:18:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/935/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:18:37 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/936/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from File to default [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:189]: Driver "csi-hostpath" does not define supported mount option - skipping + +skipped: (400ms) 2025-09-02T07:18:37 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/937/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/938/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPathSymlink doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:18:39 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/939/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:18:40 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/940/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:18:41 "[sig-storage] Projected configMap updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/941/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:41 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/942/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:18:42 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/943/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/944/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3m5s) 2025-09-02T07:18:42 "[sig-storage] CSI Mock volume snapshot CSI Volume Snapshots [Feature:VolumeSnapshotDataSource] volumesnapshotcontent and pvc in Bound state with deletion timestamp set should not get deleted while snapshot finalizer exists [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/945/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPathSymlink doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:18:43 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/946/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (27.3s) 2025-09-02T07:18:43 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv delete reclaim policy when deleting pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/947/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/948/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:18:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/949/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m47s) 2025-09-02T07:18:43 "[sig-storage] CSI Mock volume expansion CSI online volume expansion with secret should expand volume without restarting pod if attach=on, nodeExpansion=on, csiNodeExpandSecret=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/950/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/951/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/952/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/953/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m5s) 2025-09-02T07:18:44 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for Pod without SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/954/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/955/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/956/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/957/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/958/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:45 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/959/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/960/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:18:45 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/961/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPathSymlink doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:18:46 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/962/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:18:46 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/963/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:46 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/964/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/965/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/966/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/967/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/968/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:18:48 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/969/2201 "[sig-storage] Downward API volume should provide podname as non-root with fsgroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:18:48 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/970/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:48 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/971/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:48 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/972/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:49 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/973/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.6s) 2025-09-02T07:18:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/974/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:49 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/975/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:49 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/976/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/977/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:50 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/978/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.2s) 2025-09-02T07:18:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/979/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3m17s) 2025-09-02T07:18:50 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should not expand volume if resizingOnDriver=off, resizingOnSC=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/980/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:50 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/981/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:18:51 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/982/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.3s) 2025-09-02T07:18:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/983/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:18:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:6c821dd00e namespace:e2e-ephemeral-80 pod:inline-volume-plh5p]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-plh5p-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/984/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:18:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:82f9de3a43 namespace:e2e-ephemeral-80 pod:inline-volume-plh5p]}" message="{FailedScheduling running PreFilter plugin \"VolumeBinding\": error getting PVC \"e2e-ephemeral-80/inline-volume-plh5p-my-volume\": could not find v1.PersistentVolumeClaim \"e2e-ephemeral-80/inline-volume-plh5p-my-volume\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:51 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/985/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/986/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/987/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/988/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/989/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:52 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/990/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/991/2201 "[sig-storage] CSI Mock workload info CSI workload information using mock driver contain ephemeral=true when using inline volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:18:52 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/992/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy changes using mock driver should honor pv reclaim policy after it is changed from deleted to retain [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:52 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/993/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:53 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/994/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:53 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/995/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/996/2201 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity unused [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m1s) 2025-09-02T07:18:53 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/997/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:18:53 "[sig-storage] Downward API volume should provide podname as non-root with fsgroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/998/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/999/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:54 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1000/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PVC and a pre-bound PV: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1001/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (46.5s) 2025-09-02T07:18:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] read-write-once-pod [MinimumKubeletVersion:1.27] should block a second pod from using an in-use ReadWriteOncePod volume on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1002/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:18:54Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:5c19f8ee6d namespace:e2e-ephemeral-6743 pod:inline-volume-6fcd5]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-6fcd5-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:18:54Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:5c19f8ee6d namespace:e2e-ephemeral-6743 pod:inline-volume-6fcd5]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-6fcd5-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:18:54 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1003/2201 "[sig-storage] CSI Mock volume storage capacity storage capacity exhausted, immediate binding [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:18:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:ab6d819ee5 namespace:e2e-ephemeral-6743 pod:inline-volume-6fcd5]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-6743/inline-volume-6fcd5 map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:18:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:ab6d819ee5 namespace:e2e-ephemeral-6743 pod:inline-volume-6fcd5]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-6743/inline-volume-6fcd5 map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_group_snapshottable.go:78]: Driver "nfs" does not support group snapshots - skipping + +skipped: (0s) 2025-09-02T07:18:56 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1004/2201 "[sig-storage] Downward API volume should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:18:56 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1005/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (35.4s) 2025-09-02T07:18:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1006/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1007/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1008/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:18:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1009/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy [LinuxOnly] should not modify fsGroup if fsGroupPolicy=None [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:58 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1010/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:18:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1011/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/ephemeral.go:234]: Driver "nfs" does not support online volume expansion - skipping + +skipped: (8.9s) 2025-09-02T07:18:59 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1012/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:00 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1013/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1014/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1015/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:19:01 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1016/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:19:01 "[sig-storage] Downward API volume should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1017/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1018/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1019/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1020/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:03Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:4c4f5c3a08 namespace:e2e-ephemeral-6743 pod:inline-volume-tester-wr52p]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-wr52p-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:03Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester-wr52p]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:03Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester-wr52p]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1021/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:03Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester-wr52p]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:03 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1022/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:03Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester-wr52p]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:04 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1023/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:04 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1024/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1025/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:05 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1026/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:06 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1027/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:19:06 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1028/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:19:06.687700 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (21.1s) 2025-09-02T07:19:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1029/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1030/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1031/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:19:07 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1032/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv retain reclaim policy when deleting pvc then pv [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:19:08 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1033/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:19:08 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1034/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1035/2201 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should preserve attachment policy when no CSIDriver present [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (14.9s) 2025-09-02T07:19:09 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1036/2201 "[sig-storage] Secrets optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:19:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:acfb791a22 namespace:e2e-ephemeral-6743 pod:inline-volume-tester2-m5blv]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-m5blv-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:acfb791a22 namespace:e2e-ephemeral-6743 pod:inline-volume-tester2-m5blv]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-m5blv-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester2-m5blv]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester2-m5blv]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1037/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1038/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:11 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1039/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1040/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1041/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:14 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1042/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:19:15 "[sig-storage] Secrets optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1043/2201 "[sig-storage] PersistentVolumes NFS when invoking the Recycle reclaim policy should test that a PV becomes Available and is clean after the PVC is deleted. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (28.1s) 2025-09-02T07:19:15 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1044/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1045/2201 "[sig-storage] PVC Protection Verify that PVC in active use by a pod is not removed immediately [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:19:16 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1046/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.2s) 2025-09-02T07:19:16 "[sig-storage] PersistentVolumes-local [Volume type: dir] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1047/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1048/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:17 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1049/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1050/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "nfs" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:19:18 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1051/2201 "[sig-storage] CSI Mock fsgroup as mount option Delegate FSGroup to CSI driver [LinuxOnly] should not pass FSGroup to CSI driver if it is set in pod and driver supports VOLUME_MOUNT_GROUP [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:19 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1052/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:19Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-6743 pod:inline-volume-tester2-m5blv]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (25.6s) 2025-09-02T07:19:19 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1053/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:20Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:453cebd05f namespace:e2e-ephemeral-7373 pod:inline-volume-vsnw7]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-vsnw7-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:20Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:453cebd05f namespace:e2e-ephemeral-7373 pod:inline-volume-vsnw7]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-vsnw7-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:20Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:453cebd05f namespace:e2e-ephemeral-7373 pod:inline-volume-vsnw7]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-vsnw7-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1054/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:19:21 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1055/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.1s) 2025-09-02T07:19:22 "[sig-storage] CSI Mock workload info CSI workload information using mock driver contain ephemeral=true when using inline volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1056/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1057/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.6s) 2025-09-02T07:19:23 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy changes using mock driver should honor pv reclaim policy after it is changed from deleted to retain [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1058/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1059/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:23 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1060/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not unstage RWOP volume when starting a second pod with the same SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:24Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:4f35f3857d namespace:e2e-ephemeral-7373 pod:inline-volume-tester-8t24w]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-8t24w-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1061/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:19:24 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1062/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1063/2201 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should require VolumeAttach for drivers with attachment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:25Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:af1ce8a385 namespace:e2e-ephemeral-3148 pod:inline-volume-9jdd5]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-9jdd5-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:25Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:af1ce8a385 namespace:e2e-ephemeral-3148 pod:inline-volume-9jdd5]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-9jdd5-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:25Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3796d9874e namespace:e2e-ephemeral-3148 pod:inline-volume-9jdd5]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-3148/inline-volume-9jdd5 map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (31s) 2025-09-02T07:19:26 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PVC and a pre-bound PV: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1064/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1065/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:29Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:26d68e5557 namespace:e2e-ephemeral-3148 pod:inline-volume-tester-8xxc2]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-8xxc2-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:29Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3148 pod:inline-volume-tester-8xxc2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:29Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3148 pod:inline-volume-tester-8xxc2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:30Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3148 pod:inline-volume-tester-8xxc2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:30Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3148 pod:inline-volume-tester-8xxc2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (1m3s) 2025-09-02T07:19:34 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should pass SELinux mount option for RWOP volume and Pod with SELinux context set [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1066/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (18.6s) 2025-09-02T07:19:34 "[sig-storage] PVC Protection Verify that PVC in active use by a pod is not removed immediately [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1067/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1068/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:35 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1069/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:36 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1070/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:36Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:cf55d1c768 namespace:e2e-ephemeral-7373 pod:inline-volume-tester2-2glf8]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-2glf8-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1071/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:37 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1072/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:19:37 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1073/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:37 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1074/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1075/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1076/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:39Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:09d2c4f4f4 namespace:e2e-ephemeral-6868 pod:inline-volume-ncqc9]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-ncqc9-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:39Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:09d2c4f4f4 namespace:e2e-ephemeral-6868 pod:inline-volume-ncqc9]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-ncqc9-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:19:39Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:feffeedd60 namespace:e2e-ephemeral-6868 pod:inline-volume-ncqc9]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-6868/inline-volume-ncqc9 map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:19:40 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1077/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:40 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1078/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (46.5s) 2025-09-02T07:19:41 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity unused [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1079/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1080/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:42 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1081/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:19:42 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1082/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:19:42 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1083/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:19:43 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1084/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:19:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:bc23eefc38 namespace:e2e-ephemeral-6868 pod:inline-volume-tester-cwmx2]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-cwmx2-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1085/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1086/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:19:44 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1087/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.1s) 2025-09-02T07:19:45 "[sig-storage] PersistentVolumes NFS when invoking the Recycle reclaim policy should test that a PV becomes Available and is clean after the PVC is deleted. [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1088/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:19:45 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1089/2201 "[sig-storage] CSI Mock volume storage capacity storage capacity exhausted, late binding, no topology [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:19:45 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1090/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/snapshottable.go:155]: volume type "DynamicPV" is not ephemeral + +skipped: (400ms) 2025-09-02T07:19:45 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1091/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1092/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1093/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1094/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1095/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:48 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1096/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1097/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1098/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1099/2201 "[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 3 PVs and 3 PVCs: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:19:50 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1100/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22s) 2025-09-02T07:19:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1101/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:19:51 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1102/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1103/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:52 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1104/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1105/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (43.3s) 2025-09-02T07:19:53 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should preserve attachment policy when no CSIDriver present [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1106/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:19:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1107/2201 "[sig-storage] ConfigMap should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "csi-hostpath" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:19:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1108/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:55 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1109/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.1s) 2025-09-02T07:19:55 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1110/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1111/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:19:56 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1112/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1113/2201 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] should allow recovery if controller expansion fails with final error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:19:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1114/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:19:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1115/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (59.8s) 2025-09-02T07:19:58 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy [LinuxOnly] should not modify fsGroup if fsGroupPolicy=None [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1116/2201 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should expand volume by restarting pod if attach=on, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:19:59 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1117/2201 "[sig-storage] Projected downwardAPI should update annotations on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:19:59 "[sig-storage] ConfigMap should be consumable in multiple volumes in the same pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1118/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m4s) 2025-09-02T07:20:00 "[sig-storage] CSI Mock volume storage capacity storage capacity exhausted, immediate binding [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1119/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:20:01 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1120/2201 "[sig-storage] ConfigMap should be consumable from pods in volume as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (9.8s) 2025-09-02T07:20:02 "[sig-storage] PersistentVolumes-local [Volume type: dir-link] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1121/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:20:03 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1122/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:04 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1123/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1124/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (41.3s) 2025-09-02T07:20:06 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1125/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:06 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1126/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:20:06.957906 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (47s) 2025-09-02T07:20:07 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1127/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:20:07 "[sig-storage] ConfigMap should be consumable from pods in volume as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1128/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1129/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:20:07 "[sig-storage] Projected downwardAPI should update annotations on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1130/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1131/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8s) 2025-09-02T07:20:08 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1132/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1133/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:20:09 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1134/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:09 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1135/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (500ms) 2025-09-02T07:20:10 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1136/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:10 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1137/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1138/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:208]: Driver "nfs" does not support populating data from snapshot - skipping + +skipped: (600ms) 2025-09-02T07:20:10 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1139/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:11 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1140/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1141/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:11 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1142/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:11Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:06d7f47bb3 namespace:e2e-snapshotting-4265 pod:pvc-snapshottable-tester-6cxd2]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"pvc-snapshottable-tester-6cxd2-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:11Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e50c77de4e namespace:e2e-snapshotting-4265 pod:pvc-snapshottable-tester-6cxd2]}" message="{FailedScheduling running PreFilter plugin \"VolumeBinding\": error getting PVC \"e2e-snapshotting-4265/pvc-snapshottable-tester-6cxd2-my-volume\": could not find v1.PersistentVolumeClaim \"e2e-snapshotting-4265/pvc-snapshottable-tester-6cxd2-my-volume\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:11 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1143/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:12 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1144/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1145/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:12 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1146/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:13 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1147/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1148/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:14 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1149/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1150/2201 "[sig-storage] Subpath Atomic writer volumes should support subpaths with secret pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1151/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:15 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1152/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (49.6s) 2025-09-02T07:20:16 "[sig-storage] CSI Mock volume attach CSI attach test using mock driver should require VolumeAttach for drivers with attachment [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1153/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] read-write-once-pod [MinimumKubeletVersion:1.27] should preempt lower priority pods using ReadWriteOncePod volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:16 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1154/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:16 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1155/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1156/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:20:17 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1157/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:18Z" level=info msg="event interval matches MarketplaceStartupProbeFailure" locator="{Kind map[hmsg:d25e6fe1ef namespace:openshift-marketplace node:ci-op-0k0qibps-871dd-dt55f-master-0 pod:redhat-operators-bfj95]}" message="{Unhealthy Startup probe failed: timeout: failed to connect service \":50051\" within 1s\n map[firstTimestamp:2025-09-02T07:20:18Z lastTimestamp:2025-09-02T07:20:18Z reason:Unhealthy]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:18 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1158/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:19 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1159/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1160/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1161/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.5s) 2025-09-02T07:20:20 "[sig-storage] PersistentVolumes NFS with multiple PVs and PVCs all in same ns should create 3 PVs and 3 PVCs: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1162/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:21 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1163/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:21 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1164/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:21 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1165/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m44s) 2025-09-02T07:20:21 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from File to default [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1166/2201 "[sig-storage] Projected downwardAPI should provide container's memory request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:23 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1167/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:23 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1168/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:24 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1169/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:20:24 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1170/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:25 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1171/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1172/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.6s) 2025-09-02T07:20:25 "[sig-storage] Projected downwardAPI should provide container's memory request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1173/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1174/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver emptydir doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:20:26 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1175/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:26 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1176/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1177/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:27Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:7237ae1b8c namespace:e2e-snapshotting-4265 pod:restored-pvc-tester-kc8zx]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"restored-pvc-tester-kc8zx-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:7237ae1b8c namespace:e2e-snapshotting-4265 pod:restored-pvc-tester-kc8zx]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"restored-pvc-tester-kc8zx-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-4265 pod:restored-pvc-tester-kc8zx]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-4265 pod:restored-pvc-tester-kc8zx]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:b15688990f namespace:e2e-ephemeral-4641 pod:inline-volume-fvxxm]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-fvxxm-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:28 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1178/2201 "[sig-storage] Projected secret should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-4641 pod:inline-volume-fvxxm]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:fba10d69b2 namespace:e2e-ephemeral-4641 pod:inline-volume-fvxxm]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-4641/inline-volume-fvxxm map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:28Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:fba10d69b2 namespace:e2e-ephemeral-4641 pod:inline-volume-fvxxm]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-4641/inline-volume-fvxxm map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:28 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1179/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:29 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1180/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1181/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:31Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e1d5abcc2c namespace:e2e-ephemeral-4641 pod:inline-volume-tester-n5pjv]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-n5pjv-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1182/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m9s) 2025-09-02T07:20:33 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not unstage RWOP volume when starting a second pod with the same SELinux context [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1183/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:20:33 "[sig-storage] Projected secret should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1184/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:33Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:c141bc0e46 namespace:e2e-read-write-once-pod-6368 pod:pod-faad9f4a-f190-49c2-9341-4b5f62154534]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node has pod using PersistentVolumeClaim with the same name and ReadWriteOncePod access mode. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1185/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1186/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m27s) 2025-09-02T07:20:36 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv retain reclaim policy when deleting pvc then pv [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1187/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:36 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1188/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:36 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1189/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1190/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:37 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1191/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.4s) 2025-09-02T07:20:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1192/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:37 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1193/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:37Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:68165f8465 namespace:e2e-read-write-once-pod-6368 pod:pod-a8a02f18-3717-4e84-8e65-ce1aa6a24b8a]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node has pod using PersistentVolumeClaim with the same name and ReadWriteOncePod access mode. preemption: 0/8 nodes are available: 3 Preemption is not helpful for scheduling, 5 No preemption victims found for incoming pod. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1194/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1195/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1196/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1197/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1198/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:40 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1199/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:40 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1200/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1201/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.7s) 2025-09-02T07:20:40 "[sig-storage] Subpath Atomic writer volumes should support subpaths with secret pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1202/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.4s) 2025-09-02T07:20:40 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1203/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:41 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1204/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1205/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:41 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1206/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:41 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1207/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:41 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1208/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:41 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1209/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:42 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1210/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:703]: skipping multiple PV mount test for block mode + +skipped: (300ms) 2025-09-02T07:20:42 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1211/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:42 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1212/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1213/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1214/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:5c2b8de445 namespace:e2e-ephemeral-2658 pod:inline-volume-9cp27]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-9cp27-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:6d5c91ca78 namespace:e2e-ephemeral-2658 pod:inline-volume-9cp27]}" message="{FailedScheduling running PreFilter plugin \"VolumeBinding\": error getting PVC \"e2e-ephemeral-2658/inline-volume-9cp27-my-volume\": could not find v1.PersistentVolumeClaim \"e2e-ephemeral-2658/inline-volume-9cp27-my-volume\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:20:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1215/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:43Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:778a72e5a4 namespace:e2e-ephemeral-4641 pod:inline-volume-tester2-rdgkr]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-rdgkr-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:44 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1216/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1217/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:44 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1218/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1219/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1220/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1221/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:45 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1222/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:46 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1223/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:46 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1224/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1225/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.1s) 2025-09-02T07:20:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1226/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:ac6e60f84b namespace:e2e-ephemeral-2658 pod:inline-volume-tester-hl66h]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-hl66h-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:213b27929f namespace:e2e-ephemeral-2658 pod:inline-volume-tester-hl66h]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-hl66h-my-volume-1\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:20:47 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1227/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:47 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1228/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:20:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1229/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:48 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1230/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1231/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:49 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1232/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:49Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9306 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:20:49Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9306 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1233/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:20:49 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1234/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1235/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1236/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:50 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1237/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:51 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1238/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:20:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1239/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:51 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1240/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:52 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1241/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29.1s) 2025-09-02T07:20:52 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1242/2201 "[sig-storage] ConfigMap optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:52 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1243/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m6s) 2025-09-02T07:20:52 "[sig-storage] CSI Mock volume storage capacity storage capacity exhausted, late binding, no topology [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1244/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:20:52Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9306 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1245/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:20:53 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1246/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:53 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1247/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:20:53 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1248/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1249/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:54 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1250/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m35s) 2025-09-02T07:20:54 "[sig-storage] CSI Mock fsgroup as mount option Delegate FSGroup to CSI driver [LinuxOnly] should not pass FSGroup to CSI driver if it is set in pod and driver supports VOLUME_MOUNT_GROUP [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1251/2201 "[sig-storage] CSI Mock workload info CSI PodInfoOnMount Update should not be passed when update from true to false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.1s) 2025-09-02T07:20:54 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1252/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv retain reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:20:54 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1253/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1254/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:20:54 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1255/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:55 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1256/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:20:55 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1257/2201 "[sig-storage] Secrets should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1258/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:20:56 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1259/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:20:56 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1260/2201 "[sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:57 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1261/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.8s) 2025-09-02T07:20:58 "[sig-storage] ConfigMap optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1262/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:20:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1263/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1264/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:20:59 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1265/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2.5s) 2025-09-02T07:21:00 "[sig-storage] ConfigMap binary data should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1266/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1267/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1268/2201 "[sig-storage] Ephemeralstorage When pod refers to non-existent ephemeral storage should allow deletion of pod with invalid volume : secret [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:01 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1269/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1270/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:21:01 "[sig-storage] Secrets should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1271/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:02 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1272/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1273/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1274/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "nfs" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:21:03 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1275/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:21:03 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1276/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1277/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:03 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1278/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1279/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:04 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1280/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:493]: Driver "nfs" does not support populating data from snapshot - skipping + +skipped: (500ms) 2025-09-02T07:21:05 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1281/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1282/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15s) 2025-09-02T07:21:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1283/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1284/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:06Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9306 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:06Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9306 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:06Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9306 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1285/2201 "[sig-storage] CSI Mock workload info CSI workload information using mock driver should not be passed when CSIDriver does not exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1286/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:21:07.262925 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (50.2s) 2025-09-02T07:21:07 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] read-write-once-pod [MinimumKubeletVersion:1.27] should preempt lower priority pods using ReadWriteOncePod volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1287/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:21:08 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1288/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:21:08 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1289/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:21:09 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1290/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:59623f48be namespace:e2e-ephemeral-6639 pod:inline-volume-skrlk]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-skrlk-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:59623f48be namespace:e2e-ephemeral-6639 pod:inline-volume-skrlk]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-skrlk-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:aede3778b8 namespace:e2e-ephemeral-6639 pod:inline-volume-skrlk]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-6639/inline-volume-skrlk map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:13Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:66ba075892 namespace:e2e-ephemeral-6639 pod:inline-volume-tester-2cfxh]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-2cfxh-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (32.9s) 2025-09-02T07:21:15 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1291/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:16 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1292/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (49.3s) 2025-09-02T07:21:16 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1293/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m19s) 2025-09-02T07:21:17 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] should allow recovery if controller expansion fails with final error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1294/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:21:17 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1295/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1296/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1297/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1298/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1299/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.2s) 2025-09-02T07:21:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1300/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:20 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1301/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (14s) 2025-09-02T07:21:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1302/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1303/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:21 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1304/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:22 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1305/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12s) 2025-09-02T07:21:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1306/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1307/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:21:23 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1308/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1309/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1310/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1311/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m24s) 2025-09-02T07:21:23 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should expand volume by restarting pod if attach=on, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1312/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1313/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1314/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:21:24 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1315/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:24 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1316/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1317/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1318/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:25 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1319/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1320/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:21:25 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1321/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.2s) 2025-09-02T07:21:26 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1322/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:26 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1323/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:27 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1324/2201 "[sig-storage] Secrets should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:21:27Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:419aeb81aa namespace:e2e-ephemeral-3658 pod:inline-volume-q6rpp]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-q6rpp-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:27Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:419aeb81aa namespace:e2e-ephemeral-3658 pod:inline-volume-q6rpp]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-q6rpp-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:27 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1325/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/subpath.go:400]: Driver emptydir on volume type InlineVolume doesn't support readOnly source + +skipped: (500ms) 2025-09-02T07:21:27 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1326/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:27 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1327/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1328/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1329/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumelimits.go:93]: Suite "volumeLimits" does not support GenericEphemeralVolume + +skipped: (0s) 2025-09-02T07:21:28 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1330/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m20s) 2025-09-02T07:21:28 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1331/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:21:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1332/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1333/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1334/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1335/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:21:30 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1336/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1337/2201 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] new files should be created with FSGroup ownership when container is non-root [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1338/2201 "[sig-storage] PersistentVolumes-local [Volume type: block] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:31 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1339/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.7s) 2025-09-02T07:21:31 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1340/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:31Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:717808886d namespace:e2e-ephemeral-3658 pod:inline-volume-tester-fhjsk]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-fhjsk-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:31Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:717808886d namespace:e2e-ephemeral-3658 pod:inline-volume-tester-fhjsk]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-fhjsk-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:31Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3658 pod:inline-volume-tester-fhjsk]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "hostPathSymlink" does not support exec - skipping + +skipped: (500ms) 2025-09-02T07:21:32 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1341/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs should create a non-pre-bound PV and PVC: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:32 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1342/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:21:32 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1343/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:32Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3658 pod:inline-volume-tester-fhjsk]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.6s) 2025-09-02T07:21:32 "[sig-storage] Secrets should be consumable from pods in volume with mappings and Item Mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1344/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:33Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3658 pod:inline-volume-tester-fhjsk]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:33 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1345/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1346/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:33 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1347/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1348/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:21:34 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1349/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1350/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1351/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:21:35 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1352/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:35 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1353/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:21:36 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] new files should be created with FSGroup ownership when container is non-root [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1354/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1355/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:36 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1356/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1357/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:37 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1358/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1359/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1360/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1361/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.2s) 2025-09-02T07:21:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1362/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1363/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1364/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:21:38 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1365/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:95]: Driver "nfs" does not support volume expansion - skipping + +skipped: (0s) 2025-09-02T07:21:39 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1366/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/capacity.go:77]: Driver nfs doesn't publish storage capacity -- skipping + +skipped: (0s) 2025-09-02T07:21:39 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1367/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1368/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:41 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1369/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:42 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1370/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:43 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1371/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.1s) 2025-09-02T07:21:44 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1372/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1373/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1374/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:21:45 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1375/2201 "[sig-storage] PersistentVolumes-local [Volume type: block] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1376/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1377/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:46 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1378/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:21:46 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1379/2201 "[sig-storage] HostPath should support r/w [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:21:47 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1380/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.6s) 2025-09-02T07:21:47 "[sig-storage] PersistentVolumes-local [Volume type: block] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1381/2201 "[sig-storage] Projected configMap optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1382/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1383/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m2s) 2025-09-02T07:21:50 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1384/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:21:50 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1385/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:5341a0afd0 namespace:e2e-ephemeral-7818 pod:inline-volume-8msxl]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-8msxl-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-7818 pod:inline-volume-8msxl]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:51 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1386/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:51Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:935ef5d3d1 namespace:e2e-ephemeral-7818 pod:inline-volume-8msxl]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-7818/inline-volume-8msxl map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (11.6s) 2025-09-02T07:21:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1387/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:52 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1388/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:21:52 "[sig-storage] HostPath should support r/w [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1389/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:52 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1390/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.9s) 2025-09-02T07:21:52 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1391/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:21:53 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1392/2201 "[sig-storage] PV Protection Verify \"immediate\" deletion of a PV that is not bound to a PVC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:53 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1393/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:21:53 "[sig-storage] Projected configMap optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1394/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (57.9s) 2025-09-02T07:21:53 "[sig-storage] CSI Mock workload info CSI PodInfoOnMount Update should not be passed when update from true to false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1395/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:21:53 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1396/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.7s) 2025-09-02T07:21:54 "[sig-storage] PersistentVolumes-local [Volume type: block] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1397/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1398/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1399/2201 "[sig-storage] Projected secret should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1400/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:21:55 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1401/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (47.4s) 2025-09-02T07:21:55 "[sig-storage] CSI Mock workload info CSI workload information using mock driver should not be passed when CSIDriver does not exist [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1402/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e4b8c63e1a namespace:e2e-ephemeral-7818 pod:inline-volume-tester-hk6mx]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-hk6mx-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e4b8c63e1a namespace:e2e-ephemeral-7818 pod:inline-volume-tester-hk6mx]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-hk6mx-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-7818 pod:inline-volume-tester-hk6mx]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:21:55 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1403/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-7818 pod:inline-volume-tester-hk6mx]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1404/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:21:56 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1405/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.3s) 2025-09-02T07:21:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1406/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:21:56 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1407/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:21:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1408/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:21:57 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1409/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:21:57 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1410/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3.5s) 2025-09-02T07:21:58 "[sig-storage] PV Protection Verify \"immediate\" deletion of a PV that is not bound to a PVC [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1411/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.8s) 2025-09-02T07:21:58 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs should create a non-pre-bound PV and PVC: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1412/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:21:58 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1413/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:21:58 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1414/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:21:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8079 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8079 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:21:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8079 pod:hostpath-injector]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:95]: Driver "nfs" does not support volume expansion - skipping + +skipped: (0s) 2025-09-02T07:21:59 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1415/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1416/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1417/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:21:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1418/2201 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] recovery should be possible for node-only expanded volumes with infeasible error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1419/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1420/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:22:00 "[sig-storage] Projected secret should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1421/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:00 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1422/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1423/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:01 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1424/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:01 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1425/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:02 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1426/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:02 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1427/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:03 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1428/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1429/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:22:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1430/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (37.9s) 2025-09-02T07:22:03 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1431/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1432/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1433/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:04 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1434/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:04 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1435/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1436/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1437/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1438/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.3s) 2025-09-02T07:22:05 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1439/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m5s) 2025-09-02T07:22:06 "[sig-storage] Ephemeralstorage When pod refers to non-existent ephemeral storage should allow deletion of pod with invalid volume : secret [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1440/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:06Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:f462a301d9 namespace:e2e-ephemeral-3998 pod:inline-volume-8dvgh]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-8dvgh-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:22:06Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:d8d2032c89 namespace:e2e-ephemeral-3998 pod:inline-volume-8dvgh]}" message="{FailedScheduling running PreFilter plugin \"VolumeBinding\": error getting PVC \"e2e-ephemeral-3998/inline-volume-8dvgh-my-volume\": could not find v1.PersistentVolumeClaim \"e2e-ephemeral-3998/inline-volume-8dvgh-my-volume\" map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:06 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1441/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:06 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1442/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:06 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1443/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1444/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:07 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1445/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:22:07.510748 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1446/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.1s) 2025-09-02T07:22:08 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1447/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1448/2201 "[sig-storage] Downward API volume should provide podname as non-root with fsgroup and defaultMode [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1449/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1450/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1451/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:0b9268e5a6 namespace:e2e-ephemeral-3998 pod:inline-volume-tester-gvwrd]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-gvwrd-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:22:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:0b9268e5a6 namespace:e2e-ephemeral-3998 pod:inline-volume-tester-gvwrd]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-gvwrd-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:22:09Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3998 pod:inline-volume-tester-gvwrd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:10 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1452/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:10Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3998 pod:inline-volume-tester-gvwrd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:22:10Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-3998 pod:inline-volume-tester-gvwrd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1453/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1454/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (31.2s) 2025-09-02T07:22:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1455/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1456/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:22:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1457/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:13 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1458/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:13 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1459/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:22:14 "[sig-storage] Downward API volume should provide podname as non-root with fsgroup and defaultMode [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1460/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:22:14 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1461/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1462/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:15 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1463/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:15 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1464/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:15Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8079 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:22:15Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8079 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:22:15Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-8079 pod:hostpath-client]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "csi-hostpath" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:22:15 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1465/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:16 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1466/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1467/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/snapshottable.go:155]: volume type "DynamicPV" is not ephemeral + +skipped: (400ms) 2025-09-02T07:22:17 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1468/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:18 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1469/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20.5s) 2025-09-02T07:22:19 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1470/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:19 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1471/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1472/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1473/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.7s) 2025-09-02T07:22:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1474/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.8s) 2025-09-02T07:22:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1475/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:21 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1476/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:21 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1477/2201 "[sig-storage] PVC Protection Verify that scheduling of a pod that uses PVC that is being deleted fails and the pod becomes Unschedulable [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:21 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1478/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.3s) 2025-09-02T07:22:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1479/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:22 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1480/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:22 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1481/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:23 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1482/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:23 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1483/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:23 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1484/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:24 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1485/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:24 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1486/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:22:25 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1487/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "nfs" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:22:25 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1488/2201 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:22:26 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1489/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:27 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1490/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:22:31 "[sig-storage] Projected configMap should be consumable from pods in volume with mappings [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1491/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:32 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1492/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1493/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m38s) 2025-09-02T07:22:33 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Static provisioning should honor pv retain reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1494/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:33 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1495/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (39.3s) 2025-09-02T07:22:34 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1496/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volume_expand.go:95]: Driver "nfs" does not support volume expansion - skipping + +skipped: (0s) 2025-09-02T07:22:34 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1497/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.5s) 2025-09-02T07:22:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1498/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:35 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1499/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:35 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1500/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1501/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1502/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.6s) 2025-09-02T07:22:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1503/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1504/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1505/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (31s) 2025-09-02T07:22:36 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1506/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.6s) 2025-09-02T07:22:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1507/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:36 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1508/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1509/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:37Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e490ac202e namespace:e2e-pvc-protection-234 pod:pvc-tester-nzjd5]}" message="{FailedScheduling 0/8 nodes are available: persistentvolumeclaim \"pvc-protection964cz\" is being deleted. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1510/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1511/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1512/2201 "[sig-storage] Projected secret should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1513/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1514/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1515/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1516/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (30.9s) 2025-09-02T07:22:38 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1517/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1518/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1519/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:39Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e490ac202e namespace:e2e-pvc-protection-234 pod:pvc-tester-nzjd5]}" message="{FailedScheduling 0/8 nodes are available: persistentvolumeclaim \"pvc-protection964cz\" is being deleted. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1520/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (35.9s) 2025-09-02T07:22:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1521/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.8s) 2025-09-02T07:22:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1522/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:118]: Driver nfs doesn't support Block -- skipping + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1523/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1524/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1525/2201 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] nonexistent volume subPath should have the correct mode and owner using FSGroup [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1526/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1527/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1528/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1529/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (18.8s) 2025-09-02T07:22:41 "[sig-storage] PVC Protection Verify that scheduling of a pod that uses PVC that is being deleted fails and the pod becomes Unschedulable [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1530/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:41 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1531/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:22:41 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1532/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1533/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:41 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1534/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:42 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1535/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1536/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:42 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1537/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1538/2201 "[sig-storage] CSI Mock workload info CSI PodInfoOnMount Update should be passed when update from false to true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:22:42 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1539/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1540/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1541/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1542/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1543/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1544/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:22:43 "[sig-storage] Projected secret should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1545/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1546/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (34.9s) 2025-09-02T07:22:43 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1547/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1548/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1549/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1550/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1551/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1552/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1553/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1554/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:44 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1555/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:45 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1556/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/subpath.go:400]: Driver hostPathSymlink on volume type InlineVolume doesn't support readOnly source + +skipped: (8.7s) 2025-09-02T07:22:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1557/2201 "[sig-storage] Secrets should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1558/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1559/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1560/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1561/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.8s) 2025-09-02T07:22:46 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] nonexistent volume subPath should have the correct mode and owner using FSGroup [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1562/2201 "[sig-storage] Downward API volume should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:46 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1563/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:22:46 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1564/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV: test phase transition timestamp is set and phase is Available [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1565/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:47 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1566/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1567/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/ephemeral.go:333]: Multiple generic ephemeral volumes with immediate binding may cause pod startup failures when the volumes get created in separate topology segments. + +skipped: (500ms) 2025-09-02T07:22:47 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1568/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:48 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1569/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1570/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1571/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.5s) 2025-09-02T07:22:49 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1572/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1573/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1574/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:50 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1575/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:50 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1576/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:22:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1577/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:22:51 "[sig-storage] Secrets should be consumable in multiple volumes in a pod [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1578/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1579/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1580/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:52 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1581/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:22:52 "[sig-storage] Downward API volume should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1582/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:52 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1583/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:52 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1584/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:53 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1585/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:53 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1586/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1587/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:53 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1588/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1589/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (58s) 2025-09-02T07:22:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1590/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:54 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1591/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:54 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1592/2201 "[sig-storage] ConfigMap should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:22:54 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1593/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:55 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1594/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:55 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1595/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9601 pod:pod-4f9e1208-a172-44c0-8ca1-d2a67c7a8b8a]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:22:55 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1596/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1597/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:22:56 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1598/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:22:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1599/2201 "[sig-storage] CSIStorageCapacity should support CSIStorageCapacities API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1600/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:22:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9601 pod:pod-4f9e1208-a172-44c0-8ca1-d2a67c7a8b8a]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (600ms) 2025-09-02T07:22:58 "[sig-storage] CSIStorageCapacity should support CSIStorageCapacities API operations [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1601/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:58 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1602/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.8s) 2025-09-02T07:22:58 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV: test phase transition timestamp is set and phase is Available [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1603/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:22:59 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1604/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:22:59 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1605/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:23:00 "[sig-storage] ConfigMap should be consumable from pods in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1606/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1607/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1608/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.8s) 2025-09-02T07:23:01 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1609/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:01 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1610/2201 "[sig-storage] Projected secret optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:02 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1611/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:23:03 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1612/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:03Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9601 pod:pod-228877eb-9f72-4d16-bbf3-38ec6c9973d2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:23:04Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9601 pod:pod-228877eb-9f72-4d16-bbf3-38ec6c9973d2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:23:04Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9601 pod:pod-228877eb-9f72-4d16-bbf3-38ec6c9973d2]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1613/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.3s) 2025-09-02T07:23:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1614/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:23:05 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1615/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:06 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1616/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.8s) 2025-09-02T07:23:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1617/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:07 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1618/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:23:07.816669 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:23:08 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1619/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:08 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1620/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (14.8s) 2025-09-02T07:23:08 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1621/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:08Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-provisioning-9601 pod:pod-4f9e1208-a172-44c0-8ca1-d2a67c7a8b8a]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:09 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1622/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1623/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:09 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1624/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.7s) 2025-09-02T07:23:09 "[sig-storage] Projected secret optional updates should be reflected in volume [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1625/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (10.2s) 2025-09-02T07:23:09 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithformat] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1626/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1627/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:23:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1628/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1629/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:23:10 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1630/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1631/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1632/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:11 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1633/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1634/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:11 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1635/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1636/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:23:12 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1637/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver emptydir doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:23:12 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1638/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1639/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.6s) 2025-09-02T07:23:12 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1640/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1641/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:13 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1642/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1643/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1644/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:23:13 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1645/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:14 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1646/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:14 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1647/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:14 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1648/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:14 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1649/2201 "[sig-storage] EmptyDir volumes should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:14 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1650/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:23:15 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1651/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:15 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1652/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1653/2201 "[sig-storage] Ephemeralstorage When pod refers to non-existent ephemeral storage should allow deletion of pod with invalid volume : projected [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:23:15 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1654/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:23:16 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1655/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:23:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1656/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/snapshottable.go:252]: volume type "GenericEphemeralVolume" is ephemeral + +skipped: (500ms) 2025-09-02T07:23:17 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1657/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:17 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1658/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1659/2201 "[sig-storage] Subpath Atomic writer volumes should support subpaths with downward pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "local" does not support exec - skipping + +skipped: (500ms) 2025-09-02T07:23:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1660/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:19 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1661/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (32.1s) 2025-09-02T07:23:19 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1662/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:23:20 "[sig-storage] EmptyDir volumes should support (non-root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1663/2201 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] should allow recovery if controller expansion fails with infeasible error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1664/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1665/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:21 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1666/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1667/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1668/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.3s) 2025-09-02T07:23:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1669/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:22 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1670/2201 "[sig-storage] CSI Mock workload info CSI workload information using mock driver should be passed when podInfoOnMount=true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:23:23 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1671/2201 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv retain reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:23:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1672/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:24 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1673/2201 "[sig-storage] Downward API volume should provide container's cpu limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (29.1s) 2025-09-02T07:23:25 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1674/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (39.1s) 2025-09-02T07:23:25 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test write access [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1675/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:26 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1676/2201 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1677/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (34.2s) 2025-09-02T07:23:27 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1678/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1679/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1680/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1681/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:29 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1682/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:29 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1683/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:23:30 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1684/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:23:30 "[sig-storage] Downward API volume should provide container's cpu limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1685/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (29s) 2025-09-02T07:23:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1686/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1687/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1688/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:31 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1689/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1690/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:32 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1691/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "csi-hostpath" does not support exec - skipping + +skipped: (400ms) 2025-09-02T07:23:32 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1692/2201 "[sig-storage] CSIInlineVolumes should support CSIVolumeSource in Pod API [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:32 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1693/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver emptydir doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:23:32 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1694/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1695/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:33 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1696/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:33 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1697/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:23:33 "[sig-storage] CSIInlineVolumes should support CSIVolumeSource in Pod API [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1698/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.5s) 2025-09-02T07:23:34 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1699/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:34 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1700/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:23:34 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1701/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1702/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "hostPath" does not support exec - skipping + +skipped: (400ms) 2025-09-02T07:23:35 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1703/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (51.7s) 2025-09-02T07:23:35 "[sig-storage] CSI Mock workload info CSI PodInfoOnMount Update should be passed when update from false to true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1704/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1705/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1706/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:23:36 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1707/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:36 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1708/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:36 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1709/2201 "[sig-storage] Subpath Container restart should verify that container can restart successfully after configmaps modified [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:36 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1710/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (25.5s) 2025-09-02T07:23:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1711/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1712/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:37 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1713/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1714/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1715/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:23:38 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1716/2201 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] recovery should not be possible in partially expanded volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:38 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1717/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:38 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1718/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:39 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1719/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:39 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1720/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1721/2201 "[sig-storage] Volumes NFSv4 should be mountable for NFSv4 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:40 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1722/2201 "[sig-storage] CSIInlineVolumes should run through the lifecycle of a CSIDriver [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:41 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1723/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (22.7s) 2025-09-02T07:23:41 "[sig-storage] Subpath Atomic writer volumes should support subpaths with downward pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1724/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:42 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1725/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:23:42 "[sig-storage] CSIInlineVolumes should run through the lifecycle of a CSIDriver [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1726/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "nfs" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:23:43 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1727/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:23:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1728/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:44 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1729/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:44 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1730/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1731/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1732/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:45 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1733/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:46 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1734/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:115a02d479 namespace:e2e-ephemeral-2457 pod:inline-volume-qjqbb]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-qjqbb-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1735/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:115a02d479 namespace:e2e-ephemeral-2457 pod:inline-volume-qjqbb]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-qjqbb-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:23:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:8a406242c1 namespace:e2e-ephemeral-2457 pod:inline-volume-qjqbb]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-2457/inline-volume-qjqbb map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (32.5s) 2025-09-02T07:23:49 "[sig-storage] Ephemeralstorage When pod refers to non-existent ephemeral storage should allow deletion of pod with invalid volume : projected [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1736/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.4s) 2025-09-02T07:23:49 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1737/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1738/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:50 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1739/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1740/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:23:51 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1741/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:52Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:70bba76de5 namespace:e2e-ephemeral-2457 pod:inline-volume-tester-7rkfm]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-7rkfm-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:23:52 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1742/2201 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:52 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1743/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1744/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:23:54 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1745/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (37.6s) 2025-09-02T07:23:54 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1746/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:55Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:d5892a090e namespace:e2e-subpath-2049 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pod-subpath-test-configmap-6q5b]}" message="{BackOff Back-off restarting failed container test-container-subpath-configmap-6q5b in pod pod-subpath-test-configmap-6q5b_e2e-subpath-2049(4e32be6f-48b6-41e4-bf48-4a837ee382f8) map[firstTimestamp:2025-09-02T07:23:55Z lastTimestamp:2025-09-02T07:23:55Z reason:BackOff]}" +passed: (19.3s) 2025-09-02T07:23:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1747/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:23:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1748/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:23:56 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1749/2201 "[sig-storage] EmptyDir volumes should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:23:56Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:d5892a090e namespace:e2e-subpath-2049 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pod-subpath-test-configmap-6q5b]}" message="{BackOff Back-off restarting failed container test-container-subpath-configmap-6q5b in pod pod-subpath-test-configmap-6q5b_e2e-subpath-2049(4e32be6f-48b6-41e4-bf48-4a837ee382f8) map[count:2 firstTimestamp:2025-09-02T07:23:55Z lastTimestamp:2025-09-02T07:23:56Z reason:BackOff]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:56 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1750/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1751/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (20s) 2025-09-02T07:23:57 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1752/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1753/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1754/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1755/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1756/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:23:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:a929574f03 namespace:e2e-ephemeral-8779 pod:inline-volume-sm8bw]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-sm8bw-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:23:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:a929574f03 namespace:e2e-ephemeral-8779 pod:inline-volume-sm8bw]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-sm8bw-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:23:58Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:a929574f03 namespace:e2e-ephemeral-8779 pod:inline-volume-sm8bw]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-sm8bw-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:23:59Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:684b98417a namespace:e2e-ephemeral-8779 pod:inline-volume-sm8bw]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-8779/inline-volume-sm8bw map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:23:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1757/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:23:59 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1758/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:00 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1759/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/topology.go:91]: Driver "csi-hostpath" does not support topology - skipping + +skipped: (0s) 2025-09-02T07:24:00 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1760/2201 "[sig-storage] PersistentVolumes-local Pod with node different from PV's NodeAffinity should fail scheduling due to different NodeSelector [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1761/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:24:01 "[sig-storage] EmptyDir volumes should support (non-root,0644,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1762/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:02 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1763/2201 "[sig-storage] Projected downwardAPI should provide container's cpu request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:24:02Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:ede7075bef namespace:e2e-ephemeral-8779 pod:inline-volume-tester-9568x]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-9568x-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:02 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1764/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.7s) 2025-09-02T07:24:03 "[sig-storage] PersistentVolumes-local [Volume type: tmpfs] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1765/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1766/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17s) 2025-09-02T07:24:04 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1767/2201 "[sig-storage] Downward API volume should provide podname only [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:24:04 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1768/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1769/2201 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test phase transition timestamp is set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:24:05 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1770/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (17.1s) 2025-09-02T07:24:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1771/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.5s) 2025-09-02T07:24:06 "[sig-storage] Volumes NFSv4 should be mountable for NFSv4 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1772/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:06 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1773/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (43.4s) 2025-09-02T07:24:07 "[sig-storage] CSI Mock workload info CSI workload information using mock driver should be passed when podInfoOnMount=true [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1774/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy [LinuxOnly] should modify fsGroup if fsGroupPolicy=File [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:07 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1775/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:07 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1776/2201 "[sig-storage] Ephemeralstorage When pod refers to non-existent ephemeral storage should allow deletion of pod with invalid volume : configmap [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:24:07 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1777/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:24:07 "[sig-storage] Projected downwardAPI should provide container's cpu request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1778/2201 "[sig-storage] EmptyDir volumes should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + + I0902 07:24:08.050461 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:08 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1779/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1780/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1781/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:24:09 "[sig-storage] Downward API volume should provide podname only [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1782/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1783/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:10 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1784/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1785/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1786/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:11 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1787/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:11 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1788/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:11 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1789/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:24:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1790/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1791/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:24:13 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1792/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:24:13 "[sig-storage] EmptyDir volumes should support (root,0777,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1793/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1794/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:24:14Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3175ec2237 namespace:e2e-persistent-local-volumes-test-974 pod:pod-9a4fcb68-7857-4151-8b4e-1a6e6a1843ac]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) didn't match PersistentVolume's node affinity, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:14 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1795/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:24:14Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3175ec2237 namespace:e2e-persistent-local-volumes-test-974 pod:pod-9a4fcb68-7857-4151-8b4e-1a6e6a1843ac]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) didn't match PersistentVolume's node affinity, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1796/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:24:14Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3175ec2237 namespace:e2e-persistent-local-volumes-test-974 pod:pod-9a4fcb68-7857-4151-8b4e-1a6e6a1843ac]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) didn't match PersistentVolume's node affinity, 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 4 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:14 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1797/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1798/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1799/2201 "[sig-storage] ConfigMap should be immutable if `immutable` field is set [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPathSymlink doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:24:15 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1800/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (28.8s) 2025-09-02T07:24:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1801/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:24:16Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:16f398069a namespace:e2e-persistent-local-volumes-test-974 pod:pod-9a4fcb68-7857-4151-8b4e-1a6e6a1843ac]}" message="{FailedScheduling 0/8 nodes are available: persistentvolumeclaim \"pvc-9gv6g\" is being deleted. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:24:16Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:16f398069a namespace:e2e-persistent-local-volumes-test-974 pod:pod-9a4fcb68-7857-4151-8b4e-1a6e6a1843ac]}" message="{FailedScheduling 0/8 nodes are available: persistentvolumeclaim \"pvc-9gv6g\" is being deleted. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (15s) 2025-09-02T07:24:16 "[sig-storage] PersistentVolumes-local Pod with node different from PV's NodeAffinity should fail scheduling due to different NodeSelector [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1802/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:24:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1803/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1804/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1805/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (500ms) 2025-09-02T07:24:17 "[sig-storage] ConfigMap should be immutable if `immutable` field is set [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1806/2201 "[sig-storage] PersistentVolumes-local [Volume type: block] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:17 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1807/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:17 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1808/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:24:17 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1809/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1810/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1811/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1812/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:18 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1813/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1814/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1815/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1816/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1817/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/snapshottable.go:155]: volume type "DynamicPV" is not ephemeral + +skipped: (500ms) 2025-09-02T07:24:20 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1818/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:20 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1819/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:24:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1820/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1821/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:21 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1822/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:21 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1823/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:21 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1824/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:21 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (block volmode)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1825/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1826/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1827/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:24:22 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1828/2201 "[sig-storage] CSI Mock volume expansion CSI online volume expansion should expand volume without restarting pod if attach=off, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1829/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1830/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (18.9s) 2025-09-02T07:24:24 "[sig-storage] PersistentVolumes NFS with Single PV - PVC pairs create a PV and a pre-bound PVC: test phase transition timestamp is set [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1831/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1832/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:25 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1833/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:25 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1834/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.5s) 2025-09-02T07:24:26 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1835/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:24:26 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1836/2201 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity used, have capacity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1837/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:24:27 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1838/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1839/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:27 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1840/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (9.8s) 2025-09-02T07:24:28 "[sig-storage] PersistentVolumes-local [Volume type: block] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1841/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:28 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1842/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:28 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1843/2201 "[sig-storage] VolumeAttachment Conformance should run through the lifecycle of a VolumeAttachment [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:24:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1844/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1845/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1846/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (0s) 2025-09-02T07:24:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1847/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (700ms) 2025-09-02T07:24:30 "[sig-storage] VolumeAttachment Conformance should run through the lifecycle of a VolumeAttachment [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1848/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:30 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1849/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:30 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1850/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for RWO volume with only SELinuxChangePolicy enabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Feature:SELinuxMountReadWriteOncePodOnly] [FeatureGate:SELinuxChangePolicy] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:31 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1851/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:31 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1852/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:31 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1853/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:32 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (delayed binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1854/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1855/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:33 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1856/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:33 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1857/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1858/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:34 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1859/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:34 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1860/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1861/2201 "[sig-storage] Volumes NFSv3 should be mountable for NFSv3 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.8s) 2025-09-02T07:24:35 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] Two pods mounting a local volume one after the other should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1862/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1863/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:35 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1864/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1865/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1866/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:37 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1867/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:38 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1868/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1869/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/provisioning.go:604]: Driver "csi-hostpath" does not support ROX access mode - skipping + +skipped: (400ms) 2025-09-02T07:24:40 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1870/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m40s) 2025-09-02T07:24:40 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] recovery should be possible for node-only expanded volumes with infeasible error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1871/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (32.5s) 2025-09-02T07:24:41 "[sig-storage] Ephemeralstorage When pod refers to non-existent ephemeral storage should allow deletion of pod with invalid volume : configmap [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1872/2201 "[sig-storage] CSI Mock volume service account token CSIServiceAccountToken token should not be plumbed down when csiServiceAccountTokenEnabled=false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1873/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:24:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1874/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:42 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1875/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:42 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1876/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1877/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:43 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1878/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1879/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1880/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1881/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:45 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1882/2201 "[sig-storage] CSI Mock volume snapshot CSI Volume Snapshots secrets [Feature:VolumeSnapshotDataSource] volume snapshot create/delete with secrets [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (33.4s) 2025-09-02T07:24:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1883/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m9s) 2025-09-02T07:24:49 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] recovery should not be possible in partially expanded volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1884/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:49 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1885/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1886/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:24:50 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1887/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1888/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1889/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m27s) 2025-09-02T07:24:51 "[sig-storage] CSI Mock honor pv reclaim policy CSI honor pv reclaim policy using mock driver Dynamic provisioning should honor pv retain reclaim policy when deleting pv then pvc [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1890/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1891/2201 "[sig-storage] Secrets should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1892/2201 "[sig-storage] Projected configMap should be consumable from pods in volume as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:52 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1893/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:53 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1894/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:54 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1895/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (31s) 2025-09-02T07:24:54 "[sig-storage] CSI Mock volume expansion CSI online volume expansion should expand volume without restarting pod if attach=off, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1896/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:55 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1897/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.8s) 2025-09-02T07:24:55 "[sig-storage] Volumes NFSv3 should be mountable for NFSv3 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1898/2201 "[sig-storage] EmptyDir volumes should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (20.1s) 2025-09-02T07:24:56 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1899/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:24:57 "[sig-storage] Secrets should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1900/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:24:57 "[sig-storage] Projected configMap should be consumable from pods in volume as non-root [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1901/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:57 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1902/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:58 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1903/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:24:58 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1904/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:24:58 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1905/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:24:59 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1906/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:24:59 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1907/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:24:59 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1908/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1909/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:25:00 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1910/2201 "[sig-storage] CSI Mock volume snapshot CSI Snapshot Controller metrics [Feature:VolumeSnapshotDataSource] snapshot controller should emit dynamic CreateSnapshot, CreateSnapshotAndReady, and DeleteSnapshot metrics [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:25:01 "[sig-storage] EmptyDir volumes should support (non-root,0777,tmpfs) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1911/2201 "[sig-storage] Subpath Atomic writer volumes should support subpaths with projected pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1912/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1913/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:25:03 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1914/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:25:08.324766 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (1m2s) 2025-09-02T07:25:09 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy [LinuxOnly] should modify fsGroup if fsGroupPolicy=File [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1915/2201 "[sig-storage] Projected downwardAPI should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +passed: (15s) 2025-09-02T07:25:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1916/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1917/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/subpath.go:400]: Driver hostPath on volume type InlineVolume doesn't support readOnly source + +skipped: (8.6s) 2025-09-02T07:25:13 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1918/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:25:14 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1919/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m37s) 2025-09-02T07:25:14 "[sig-storage] Subpath Container restart should verify that container can restart successfully after configmaps modified [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1920/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:25:15 "[sig-storage] Projected downwardAPI should set mode on item file [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1921/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:15 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1922/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (48.1s) 2025-09-02T07:25:15 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity used, have capacity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1923/2201 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] should record target size in allocated resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:16 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1924/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:16 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1925/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (31.6s) 2025-09-02T07:25:16 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1926/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:25:17 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1927/2201 "[sig-storage] Downward API volume should provide container's cpu request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:17 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1928/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:18 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1929/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1930/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:20 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1931/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1932/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (21.1s) 2025-09-02T07:25:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1933/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.6s) 2025-09-02T07:25:22 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1934/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1935/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.7s) 2025-09-02T07:25:23 "[sig-storage] Downward API volume should provide container's cpu request [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1936/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:23 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1937/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1938/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:24 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1939/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/csimock/csi_snapshot.go:324]: Snapshot controller metrics not found -- skipping + +skipped: (23.2s) 2025-09-02T07:25:25 "[sig-storage] CSI Mock volume snapshot CSI Snapshot Controller metrics [Feature:VolumeSnapshotDataSource] snapshot controller should emit dynamic CreateSnapshot, CreateSnapshotAndReady, and DeleteSnapshot metrics [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1940/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should not update fsGroup if update from detault to None [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1941/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:25 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1942/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.7s) 2025-09-02T07:25:26 "[sig-storage] Subpath Atomic writer volumes should support subpaths with projected pod [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/1943/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:27 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1944/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:28 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1945/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1946/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:30 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1947/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:25:30 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1948/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:25:31 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1949/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:31 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1950/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:32 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1951/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:32 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1952/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:33 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1953/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (51.7s) 2025-09-02T07:25:33 "[sig-storage] CSI Mock volume service account token CSIServiceAccountToken token should not be plumbed down when csiServiceAccountTokenEnabled=false [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1954/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:33 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1955/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:25:34 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1956/2201 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity used, insufficient capacity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:25:34 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1957/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1958/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:25:34Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-7842 pod:restored-pvc-tester-wtxhb]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:25:34Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-7842 pod:restored-pvc-tester-wtxhb]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:25:35Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-7842 pod:restored-pvc-tester-wtxhb]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:25:35Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-7842 pod:restored-pvc-tester-wtxhb]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1959/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m4s) 2025-09-02T07:25:35 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for RWO volume with only SELinuxChangePolicy enabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Feature:SELinuxMountReadWriteOncePodOnly] [FeatureGate:SELinuxChangePolicy] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1960/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:35 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1961/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.2s) 2025-09-02T07:25:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1962/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1963/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:25:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1964/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1965/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (14.2s) 2025-09-02T07:25:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1966/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:105]: Driver "local" does not support exec - skipping + +skipped: (500ms) 2025-09-02T07:25:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1967/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should add SELinux mount option to existing mount options [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:25:37 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1968/2201 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] volume on default medium should have the correct mode using FSGroup [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1969/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1970/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:38 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1971/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:39 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1972/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1973/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:39 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1974/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:40 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1975/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1976/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1977/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:41 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1978/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1979/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:42 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1980/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup skips ownership changes to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1981/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:43 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1982/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:25:43 "[sig-storage] EmptyDir volumes when FSGroup is specified [LinuxOnly] volume on default medium should have the correct mode using FSGroup [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1983/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1984/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:44 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1985/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1986/2201 "[sig-storage] PersistentVolumes CSI Conformance should run through the lifecycle of a PV and a PVC [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:45 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1987/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:45 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1988/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:46 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1989/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1990/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.5s) 2025-09-02T07:25:46 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1991/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:25:46 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1992/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:47 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1993/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:25:47Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:0a58f459f1 namespace:e2e-csi-mock-volumes-capacity-5421 pod:pvc-volume-tester-n2w2h]}" message="{FailedScheduling 0/8 nodes are available: 1 node(s) did not have enough free storage, 7 node(s) didn't satisfy plugin(s) [NodeAffinity]. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:47 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], rwop pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1994/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1995/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver local doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:25:47 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1996/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1997/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1998/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:49 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1999/2201 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should expand volume without restarting pod if nodeExpansion=off [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2000/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2001/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:49 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2002/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2003/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:50 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2004/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:50 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2005/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2006/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:25:51 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2007/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumes.go:112]: Driver "local" does not provide raw block - skipping + +skipped: (500ms) 2025-09-02T07:25:51 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2008/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (6.8s) 2025-09-02T07:25:52 "[sig-storage] PersistentVolumes CSI Conformance should run through the lifecycle of a PV and a PVC [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2009/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2010/2201 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for RWO volume with SELinuxMount disabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Feature:SELinuxMountReadWriteOncePodOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver emptydir doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:25:53 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2011/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2012/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:25:55 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2013/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:56 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2014/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:57 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2015/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:25:57 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2016/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m37s) 2025-09-02T07:25:58 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] should allow recovery if controller expansion fails with infeasible error [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2017/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:25:58 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2018/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m1s) 2025-09-02T07:25:59 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2019/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source (ROX mode) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2020/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:25:59 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2021/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (43.3s) 2025-09-02T07:25:59 "[sig-storage] CSI Mock volume expansion Expansion with recovery [Feature:RecoverVolumeExpansionFailure] [FeatureGate:RecoverVolumeExpansionFailure] [Beta] should record target size in allocated resources [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2022/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:00 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2023/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2024/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:00 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2025/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:00 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2026/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2027/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2028/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:01 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2029/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:01 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2030/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2031/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:02 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2032/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:02 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2033/2201 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:02 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with same fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2034/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:03 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2035/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:03 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2036/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (28.2s) 2025-09-02T07:26:03 "[sig-storage] CSI Mock volume storage capacity CSIStorageCapacity CSIStorageCapacity used, insufficient capacity [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2037/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (52s) 2025-09-02T07:26:04 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2038/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2039/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:04 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2040/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:05 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2041/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:26:05 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2042/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2043/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.5s) 2025-09-02T07:26:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2044/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.3s) 2025-09-02T07:26:05 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2045/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:26:06 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2046/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:06 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2047/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:06 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2048/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:06 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2049/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:06 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2050/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:06 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2051/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:07 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2052/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2053/2201 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:07 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2054/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:07 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2055/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:08 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2056/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:08 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2057/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:26:08 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings as non-root with FSGroup [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2058/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:26:08.566176 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2059/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:26:08 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2060/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:09 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2061/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:09 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2062/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:09 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (delayed binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2063/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:09 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2064/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:10 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2065/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:10 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2066/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:11 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2067/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:11 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2068/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2069/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:12 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2070/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:26:13 "[sig-storage] ConfigMap should be consumable from pods in volume with mappings and Item mode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2071/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:13 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing single file [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2072/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:13 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2073/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:14 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2074/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:14 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (default fs)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2075/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:14 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2076/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (47.9s) 2025-09-02T07:26:14 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2077/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:15 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2078/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:26:15 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2079/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:15 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2080/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:16 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source (ROX mode) [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2081/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping PreprovisionedPV pattern + +skipped: (0s) 2025-09-02T07:26:16 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2082/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:16 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2083/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:17 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2084/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:26:17 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2085/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.3s) 2025-09-02T07:26:17 "[sig-storage] PersistentVolumes-local [Volume type: dir-link-bindmounted] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2086/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:26:17 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2087/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:18 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2088/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2089/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver csi-hostpath doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:26:18 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2090/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:18 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2091/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:18 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2092/2201 "[sig-storage] VolumeAttachment Conformance should apply changes to a volumeattachment status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:19 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: (delete policy)] volumegroupsnapshottable [Feature:volumegroupsnapshot] VolumeGroupSnapshottable should create snapshots for multiple volumes in a pod [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2093/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ntfs)] [Feature:Windows] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2094/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2095/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (15.3s) 2025-09-02T07:26:19 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2096/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ntfs -- skipping + +skipped: (0s) 2025-09-02T07:26:20 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2097/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:20 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Inline-volume (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2098/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:20 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2099/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:20 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2100/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (600ms) 2025-09-02T07:26:20 "[sig-storage] VolumeAttachment Conformance should apply changes to a volumeattachment status [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2101/2201 "[sig-storage] EmptyDir volumes should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:21 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2102/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/base.go:254]: Driver supports dynamic provisioning, skipping InlineVolume pattern + +skipped: (0s) 2025-09-02T07:26:21 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Inline-volume (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2103/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2104/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:21 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2105/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (19.7s) 2025-09-02T07:26:21 "[sig-storage] PersistentVolumes-local [Volume type: dir] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2106/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:22 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2107/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] capacity provides storage capacity information [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2108/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:22 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2109/2201 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:22 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] subPath should be able to unmount after the subpath directory is deleted [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2110/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (13.4s) 2025-09-02T07:26:22 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Pre-provisioned PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2111/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/fsgroupchangepolicy.go:81]: Driver "csi-hostpath" does not support FsGroup - skipping + +skipped: (0s) 2025-09-02T07:26:23 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2112/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:23 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2113/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:23 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)(allowExpansion)] [Feature:Windows] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2114/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:24 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2115/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:24 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2116/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:25 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2117/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver nfs doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:26:25 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2118/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:26:26 "[sig-storage] EmptyDir volumes should support (root,0666,default) [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2119/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:26 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2120/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:26 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2121/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:26 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2122/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:26 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (ext3)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2123/2201 "[sig-storage] Projected downwardAPI should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver csi-hostpath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:26:27 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned PV (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2124/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:28 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2125/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (7.2s) 2025-09-02T07:26:29 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] One pod requesting one prebound PVC should be able to mount volume and read from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2126/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:29 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2127/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:30 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2128/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPath doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:26:30 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2129/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:31 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support non-existent path [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2130/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:31 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2131/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:32 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2132/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:32 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should create read/write inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2133/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.5s) 2025-09-02T07:26:32 "[sig-storage] Projected downwardAPI should provide node allocatable (memory) as default memory limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2134/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support PreprovisionedPV -- skipping + +skipped: (0s) 2025-09-02T07:26:33 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Pre-provisioned PV (ntfs)] [Feature:Windows] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2135/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:33 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (default fs)] provisioning should provision storage with pvc data source [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2136/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:33 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2137/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (24.2s) 2025-09-02T07:26:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Pre-provisioned PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2138/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:34 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2139/2201 "[sig-storage] Downward API volume should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:34 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (block volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2140/2201 "[sig-storage] Secrets should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:34 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2141/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (11.6s) 2025-09-02T07:26:35 "[sig-storage] PersistentVolumes-local [Volume type: dir-bindmounted] Two pods mounting a local volume at the same time should be able to write from pod1 and read from pod2 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2142/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:35 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2143/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:36 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2144/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (12.9s) 2025-09-02T07:26:36 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2145/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2146/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:36 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2147/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:37 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2148/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:26:37 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2149/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2150/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:37 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2151/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:38Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:1473fe0e22 namespace:e2e-ephemeral-4650 pod:inline-volume-mhrwg]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-mhrwg-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:38Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:1473fe0e22 namespace:e2e-ephemeral-4650 pod:inline-volume-mhrwg]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-mhrwg-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:38Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:f9c4b70dba namespace:e2e-ephemeral-4650 pod:inline-volume-mhrwg]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-4650/inline-volume-mhrwg map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with mount options [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2152/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:38 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Inline-volume (ext4)] volumes should allow exec of files on the volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2153/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:38 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2154/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:39 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (Always)[LinuxOnly], pod created with an initial fsgroup, new pod fsgroup applied to volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2155/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:39 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2156/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:39 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2157/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m1s) 2025-09-02T07:26:40 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should add SELinux mount option to existing mount options [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2158/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:40 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision correct filesystem size when restoring snapshot to larger size pvc [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2159/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:966c8e0563 namespace:e2e-snapshotting-6998 pod:pvc-snapshottable-tester-9fgnf]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"pvc-snapshottable-tester-9fgnf-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.6s) 2025-09-02T07:26:40 "[sig-storage] Downward API volume should provide node allocatable (cpu) as default cpu limit if the limit is not set [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2160/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:966c8e0563 namespace:e2e-snapshotting-6998 pod:pvc-snapshottable-tester-9fgnf]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"pvc-snapshottable-tester-9fgnf-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:40Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-6998 pod:pvc-snapshottable-tester-9fgnf]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.6s) 2025-09-02T07:26:40 "[sig-storage] Secrets should be consumable from pods in volume with defaultMode set [LinuxOnly] [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2161/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:40 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (block volmode)] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2162/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:40 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Pre-provisioned PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2163/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:41 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2164/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:41 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly directory specified in the volumeMount [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2165/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (immediate binding)] topology should fail to schedule a pod which has topologies that conflict with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2166/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:41 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (default fs)] provisioning should mount multiple PV pointing to the same storage on the same node [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2167/2201 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:42 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2168/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:42Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-6998 pod:pvc-snapshottable-tester-9fgnf]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2169/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2170/2201 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:42Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:35e77c4595 namespace:e2e-ephemeral-4650 pod:inline-volume-tester-5hkq7]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-5hkq7-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:42 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: tmpfs] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2171/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:42 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2172/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1033]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:42 "[sig-storage] In-tree Volumes [Driver: azure-disk] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2173/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2174/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:43 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Dynamic PV (block volmode)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2175/2201 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:44 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-bindmounted] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2176/2201 "[sig-storage] Downward API volume should update annotations on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:44 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2177/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPathSymlink doesn't support ext3 -- skipping + +skipped: (0s) 2025-09-02T07:26:44 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Inline-volume (ext3)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2178/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:126]: Driver hostPath doesn't support ext4 -- skipping + +skipped: (0s) 2025-09-02T07:26:44 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2179/2201 "[sig-storage] HostPath should support subPath [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/volumelimits.go:93]: Suite "volumeLimits" does not support GenericEphemeralVolume + +skipped: (0s) 2025-09-02T07:26:44 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs)] volumeLimits should verify that all csinodes have volume limits [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2180/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2181/2201 "[sig-storage] ConfigMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:45 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Dynamic PV (default fs)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2182/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:45 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support multiple inline ephemeral volumes [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2183/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:46 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: block] [Testpattern: Dynamic PV (default fs)] subPath should support readOnly file specified in the volumeMount [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2184/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/testsuites/ephemeral.go:227]: Skipping CSIInlineVolume test for expansion + +skipped: (500ms) 2025-09-02T07:26:47 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: CSI Ephemeral-volume (default fs)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2185/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:47 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] provisioning should provision storage with snapshot data source [Feature:VolumeSnapshotDataSource] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2186/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support InlineVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:48 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link] [Testpattern: Inline-volume (ext4)] volumes should store data [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2187/2201 "[sig-storage] CSI Mock volume expansion CSI online volume expansion should expand volume without restarting pod if attach=on, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.6s) 2025-09-02T07:26:50 "[sig-storage] HostPath should support subPath [NodeConformance] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2188/2201 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (5.1s) 2025-09-02T07:26:50 "[sig-storage] Downward API volume should update annotations on modification [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2189/2201 "[sig-storage] Projected downwardAPI should provide container's memory limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +time="2025-09-02T07:26:50Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:338c9894df namespace:e2e-snapshotting-6998 pod:restored-pvc-tester-7q5fz]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"restored-pvc-tester-7q5fz-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:50Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:2128b55c4f namespace:e2e-ephemeral-4650 pod:inline-volume-tester2-njjm8]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester2-njjm8-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:50Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-6998 pod:restored-pvc-tester-7q5fz]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:50Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-6998 pod:restored-pvc-tester-7q5fz]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:50Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-6998 pod:restored-pvc-tester-7q5fz]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:1434]: Only supported for providers [azure] (not gce) + +skipped: (0s) 2025-09-02T07:26:50 "[sig-storage] In-tree Volumes [Driver: azure-file] [Testpattern: Dynamic PV (default fs)] fsgroupchangepolicy (OnRootMismatch)[LinuxOnly], pod created with an initial fsgroup, volume contents ownership changed via chgrp in first pod, new pod with different fsgroup applied to the volume contents [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2190/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (4.8s) 2025-09-02T07:26:51 "[sig-storage] ConfigMap should be consumable from pods in volume as non-root with defaultMode and fsGroup set [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2191/2201 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (8.3s) 2025-09-02T07:26:51 "[sig-storage] PersistentVolumes-local [Volume type: blockfswithoutformat] One pod requesting one prebound PVC should be able to mount volume and write from pod1 [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2192/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver emptydir doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:52 "[sig-storage] In-tree Volumes [Driver: emptydir] [Testpattern: Dynamic PV (ntfs)] [Feature:Windows] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2193/2201 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:52Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:ef18888284 namespace:e2e-ephemeral-5030 pod:inline-volume-fvhql]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-fvhql-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:52Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-5030 pod:inline-volume-fvhql]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:52Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:2eb8e3b100 namespace:e2e-ephemeral-5030 pod:inline-volume-fvhql]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-5030/inline-volume-fvhql map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:52 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2194/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPathSymlink doesn't support GenericEphemeralVolume -- skipping + +skipped: (0s) 2025-09-02T07:26:53 "[sig-storage] In-tree Volumes [Driver: hostPathSymlink] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2195/2201 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:53 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir-link-bindmounted] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand should resize volume when PVC is edited while pod is using it [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2196/2201 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver hostPath doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:53 "[sig-storage] In-tree Volumes [Driver: hostPath] [Testpattern: Dynamic PV (filesystem volmode)] volumeMode should not mount / map unused volumes in a pod [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2197/2201 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:965]: Only supported for providers [vsphere] (not gce) + +skipped: (0s) 2025-09-02T07:26:54 "[sig-storage] In-tree Volumes [Driver: vsphere] [Testpattern: Inline-volume (default fs)] subPath should support existing directory [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2198/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/framework/testsuite.go:121]: Driver local doesn't support DynamicPV -- skipping + +skipped: (0s) 2025-09-02T07:26:54 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: dir] [Testpattern: Dynamic PV (immediate binding)] topology should provision a volume and schedule a pod with AllowedTopologies [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2199/2201 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:55 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should create read-only inline ephemeral volume [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/2200/2201 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from None to default [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-5937 pod:restored-pvc-tester-cb4fd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-5937 pod:restored-pvc-tester-cb4fd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-5937 pod:restored-pvc-tester-cb4fd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-snapshotting-5937 pod:restored-pvc-tester-cb4fd]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.6s) 2025-09-02T07:26:55 "[sig-storage] Projected downwardAPI should provide container's memory limit [NodeConformance] [Conformance] [Suite:openshift/conformance/parallel/minimal] [Suite:k8s]" + +started: 0/2201/2201 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:55Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:b79ce026d2 namespace:e2e-ephemeral-5030 pod:inline-volume-tester-2bx2t]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-2bx2t-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-5030 pod:inline-volume-tester-2bx2t]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:53139c83e9 namespace:e2e-ephemeral-6836 pod:inline-volume-vrkjf]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-vrkjf-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:53139c83e9 namespace:e2e-ephemeral-6836 pod:inline-volume-vrkjf]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-vrkjf-my-volume\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:a0c8561ff5 namespace:e2e-ephemeral-6836 pod:inline-volume-vrkjf]}" message="{FailedScheduling skip schedule deleting pod: e2e-ephemeral-6836/inline-volume-vrkjf map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-5030 pod:inline-volume-tester-2bx2t]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:26:56Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:e3fadfae6a namespace:e2e-ephemeral-5030 pod:inline-volume-tester-2bx2t]}" message="{FailedScheduling 0/8 nodes are available: pod has unbound immediate PersistentVolumeClaims. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +skip [k8s.io/kubernetes/test/e2e/storage/drivers/in_tree.go:777]: Only supported for providers [openstack] (not gce) + +skipped: (0s) 2025-09-02T07:26:56 "[sig-storage] In-tree Volumes [Driver: cinder] [Testpattern: Pre-provisioned PV (default fs)] subPath should support existing directories when readOnly specified in the volumeSource [Suite:openshift/conformance/parallel] [Suite:k8s]" + +time="2025-09-02T07:26:59Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:b8b72ca51c namespace:e2e-ephemeral-6836 pod:inline-volume-tester-trw48]}" message="{FailedScheduling 0/8 nodes are available: waiting for ephemeral volume controller to create the persistentvolumeclaim \"inline-volume-tester-trw48-my-volume-0\". preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (1m7s) 2025-09-02T07:27:01 "[sig-storage] CSI Mock selinux on mount SELinuxMount [LinuxOnly] [Feature:SELinux] should not pass SELinux mount option for RWO volume with SELinuxMount disabled [FeatureGate:SELinuxMountReadWriteOncePod] [Beta] [Feature:SELinuxMountReadWriteOncePodOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (23.4s) 2025-09-02T07:27:01 "[sig-storage] In-tree Volumes [Driver: nfs] [Testpattern: Generic Ephemeral-volume (default fs) (late-binding)] ephemeral should support two pods which have the same volume definition [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m13s) 2025-09-02T07:27:03 "[sig-storage] CSI Mock volume expansion CSI Volume expansion should expand volume without restarting pod if nodeExpansion=off [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m41s) 2025-09-02T07:27:07 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should not update fsGroup if update from detault to None [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (41.7s) 2025-09-02T07:27:08 "[sig-storage] In-tree Volumes [Driver: local] [LocalVolumeType: blockfs] [Testpattern: Pre-provisioned PV (default fs)] subPath should support file as subpath [LinuxOnly] [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:27:08.806408 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (46s) 2025-09-02T07:27:09 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (block volmode)(allowExpansion)] volume-expand Verify if offline PVC expansion works [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (39.6s) 2025-09-02T07:27:28 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Dynamic PV (default fs)] volume-expand should not allow expansion of pvcs without AllowVolumeExpansion property [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (36.8s) 2025-09-02T07:27:32 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (block volmode) (late-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m5s) 2025-09-02T07:27:43 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Ephemeral Snapshot (delete policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works, check deletion (ephemeral) [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (3m6s) 2025-09-02T07:27:52 "[sig-storage] CSI Mock volume snapshot CSI Volume Snapshots secrets [Feature:VolumeSnapshotDataSource] volume snapshot create/delete with secrets [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m43s) 2025-09-02T07:27:57 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Pre-provisioned Snapshot (retain policy)] snapshottable [Feature:VolumeSnapshotDataSource] volume snapshot controller should check snapshot fields, check restore correctly works after modifying source data, check deletion (persistent) [Suite:openshift/conformance/parallel] [Suite:k8s]" + + I0902 07:28:09.009424 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (1m40s) 2025-09-02T07:28:36 "[sig-storage] CSI Mock volume fsgroup policies CSI FSGroupPolicy Update [LinuxOnly] should update fsGroup if update from None to default [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (2m1s) 2025-09-02T07:28:50 "[sig-storage] CSI Mock volume expansion CSI online volume expansion should expand volume without restarting pod if attach=on, nodeExpansion=on [Suite:openshift/conformance/parallel] [Suite:k8s]" + +passed: (1m59s) 2025-09-02T07:28:50 "[sig-storage] CSI Volumes [Driver: csi-hostpath] [Testpattern: Generic Ephemeral-volume (default fs) (immediate-binding)] ephemeral should support expansion of pvcs created for ephemeral pvcs [Suite:openshift/conformance/parallel] [Suite:k8s]" + +started: 0/1/27 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should successfully resolve valueFrom in s2i build environment variables [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/2/27 "[sig-builds][Feature:Builds][webhook] TestWebhookGitHubPushWithImage [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/3/27 "[sig-builds][Feature:Builds] build without output image building from templates should create an image from a S2i template without an output image reference defined [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/4/27 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should fail resolving unresolvable valueFrom in docker build environment variable references [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/5/27 "[sig-builds][Feature:Builds][subscription-content] builds installing subscription content [apigroup:build.openshift.io] should succeed for RHEL 9 base images [Suite:openshift/conformance/parallel]" + +started: 0/6/27 "[sig-builds][Feature:Builds] build have source revision metadata started build should contain source revision information [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/7/27 "[sig-builds][Feature:Builds] remove all builds when build configuration is removed oc delete buildconfig should start builds and delete the buildconfig [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/8/27 "[sig-builds][Feature:Builds][timing] capture build stages and durations should record build stages and durations for docker [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/9/27 "[sig-builds][Feature:Builds] buildconfig secret injector should inject secrets to the appropriate buildconfigs [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/10/27 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should fail resolving unresolvable valueFrom in sti build environment variable references [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/11/27 "[sig-builds][Feature:Builds][subscription-content] builds installing subscription content [apigroup:build.openshift.io] should succeed for RHEL 8 base images [Suite:openshift/conformance/parallel]" + +started: 0/12/27 "[sig-builds][Feature:Builds] build without output image building from templates should create an image from a docker template without an output image reference defined [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/13/27 "[sig-builds][Feature:Builds] result image should have proper labels set S2I build from a template should create a image from \"test-s2i-build.json\" template with proper Docker labels [apigroup:build.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/14/27 "[sig-builds][Feature:Builds][webhook] TestWebhookGitHubPushWithImageStream [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/15/27 "[sig-builds][Feature:Builds] oc new-app should fail with a --name longer than 58 characters [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/builds/subscription_content.go:44]: cluster entitlements not found + +skipped: (1.3s) 2025-09-02T07:28:54 "[sig-builds][Feature:Builds][subscription-content] builds installing subscription content [apigroup:build.openshift.io] should succeed for RHEL 8 base images [Suite:openshift/conformance/parallel]" + +started: 0/16/27 "[sig-builds][Feature:Builds][pullsearch] docker build where the registry is not specified Building from a Dockerfile whose FROM image ref does not specify the image registry should create a docker build that has buildah search from our predefined list of image registries and succeed [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:28:54 "[sig-builds][Feature:Builds][webhook] TestWebhookGitHubPushWithImage [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/17/27 "[sig-builds][Feature:Builds] imagechangetriggers imagechangetriggers should trigger builds of all types [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/builds/subscription_content.go:44]: cluster entitlements not found + +skipped: (1.6s) 2025-09-02T07:28:55 "[sig-builds][Feature:Builds][subscription-content] builds installing subscription content [apigroup:build.openshift.io] should succeed for RHEL 9 base images [Suite:openshift/conformance/parallel]" + +started: 0/18/27 "[sig-builds][Feature:Builds][subscription-content] builds installing subscription content [apigroup:build.openshift.io] should succeed for RHEL 7 base images [Suite:openshift/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:28:55 "[sig-builds][Feature:Builds] buildconfig secret injector should inject secrets to the appropriate buildconfigs [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/19/27 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should successfully resolve valueFrom in docker build environment variables [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (2.4s) 2025-09-02T07:28:55 "[sig-builds][Feature:Builds][webhook] TestWebhookGitHubPushWithImageStream [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/20/27 "[sig-builds][sig-node][Feature:Builds][apigroup:build.openshift.io] zstd:chunked Image should successfully run date command [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (2.9s) 2025-09-02T07:28:56 "[sig-builds][Feature:Builds] oc new-app should fail with a --name longer than 58 characters [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/21/27 "[sig-builds][Feature:Builds] s2i build with a quota Building from a template should create an s2i build with a quota and run it [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/builds/subscription_content.go:44]: cluster entitlements not found + +skipped: (1.1s) 2025-09-02T07:28:57 "[sig-builds][Feature:Builds][subscription-content] builds installing subscription content [apigroup:build.openshift.io] should succeed for RHEL 7 base images [Suite:openshift/conformance/parallel]" + +started: 0/22/27 "[sig-builds][Feature:Builds][timing] capture build stages and durations should record build stages and durations for s2i [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (2.4s) 2025-09-02T07:28:58 "[sig-builds][Feature:Builds] imagechangetriggers imagechangetriggers should trigger builds of all types [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/23/27 "[sig-builds][Feature:Builds] result image should have proper labels set Docker build from a template should create a image from \"test-docker-build.json\" template with proper Docker labels [apigroup:build.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (5.9s) 2025-09-02T07:28:59 "[sig-builds][Feature:Builds] remove all builds when build configuration is removed oc delete buildconfig should start builds and delete the buildconfig [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/24/27 "[sig-builds][Feature:Builds][pullsecret] docker build using a pull secret Building from a template should create a docker build that pulls using a secret run it [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (8.3s) 2025-09-02T07:29:01 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should fail resolving unresolvable valueFrom in docker build environment variable references [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/25/27 "[sig-builds][Feature:Builds][webhook] TestWebhookGitHubPing [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (8.5s) 2025-09-02T07:29:01 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should fail resolving unresolvable valueFrom in sti build environment variable references [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/26/27 "[sig-builds][Feature:Builds][webhook] TestWebhook [apigroup:build.openshift.io][apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:29:04 "[sig-builds][Feature:Builds][webhook] TestWebhook [apigroup:build.openshift.io][apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/27/27 "[sig-builds][Feature:Builds] build with empty source started build should build even with an empty source in build config [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (6.1s) 2025-09-02T07:29:08 "[sig-builds][Feature:Builds][webhook] TestWebhookGitHubPing [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + + I0902 07:29:09.276077 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (33s) 2025-09-02T07:29:26 "[sig-builds][Feature:Builds] build have source revision metadata started build should contain source revision information [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (33.3s) 2025-09-02T07:29:26 "[sig-builds][Feature:Builds] build without output image building from templates should create an image from a S2i template without an output image reference defined [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (42.5s) 2025-09-02T07:29:38 "[sig-builds][Feature:Builds][pullsearch] docker build where the registry is not specified Building from a Dockerfile whose FROM image ref does not specify the image registry should create a docker build that has buildah search from our predefined list of image registries and succeed [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (48s) 2025-09-02T07:29:41 "[sig-builds][Feature:Builds] result image should have proper labels set S2I build from a template should create a image from \"test-s2i-build.json\" template with proper Docker labels [apigroup:build.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (47.7s) 2025-09-02T07:29:46 "[sig-builds][Feature:Builds] result image should have proper labels set Docker build from a template should create a image from \"test-docker-build.json\" template with proper Docker labels [apigroup:build.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (53.7s) 2025-09-02T07:29:47 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should successfully resolve valueFrom in s2i build environment variables [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (53.5s) 2025-09-02T07:29:47 "[sig-builds][Feature:Builds] build without output image building from templates should create an image from a docker template without an output image reference defined [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (58.2s) 2025-09-02T07:29:54 "[sig-builds][Feature:Builds][valueFrom] process valueFrom in build strategy environment variables should successfully resolve valueFrom in docker build environment variables [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + + I0902 07:30:09.501988 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (1m10s) 2025-09-02T07:30:15 "[sig-builds][Feature:Builds] build with empty source started build should build even with an empty source in build config [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1m22s) 2025-09-02T07:30:20 "[sig-builds][Feature:Builds][timing] capture build stages and durations should record build stages and durations for s2i [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1m32s) 2025-09-02T07:30:25 "[sig-builds][Feature:Builds][timing] capture build stages and durations should record build stages and durations for docker [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1m29s) 2025-09-02T07:30:29 "[sig-builds][Feature:Builds][pullsecret] docker build using a pull secret Building from a template should create a docker build that pulls using a secret run it [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1m36s) 2025-09-02T07:30:33 "[sig-builds][Feature:Builds] s2i build with a quota Building from a template should create an s2i build with a quota and run it [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + + I0902 07:31:09.730948 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (2m37s) 2025-09-02T07:31:33 "[sig-builds][sig-node][Feature:Builds][apigroup:build.openshift.io] zstd:chunked Image should successfully run date command [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/1/476 "[sig-cli] oc set image can set images for pods and deployments [apigroup:image.openshift.io][apigroup:apps.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/2/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork is isolated from the default network with L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 0/3/476 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.ping_group_range [Suite:openshift/conformance/parallel/minimal]" + +started: 0/4/476 "[sig-devex][Feature:OpenShiftControllerManager] TestAutomaticCreationOfPullSecrets [apigroup:config.openshift.io][apigroup:image.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 0/5/476 "[sig-network] services when using a plugin in a mode that does not isolate namespaces by default should allow connections to pods in different namespaces on the same node via service IPs [Suite:openshift/conformance/parallel]" + +started: 0/6/476 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestAuthorizationSubjectAccessReviewAPIGroup should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/7/476 "[sig-auth][Feature:ProjectAPI] TestScopedProjectAccess should succeed [apigroup:user.openshift.io][apigroup:project.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/8/476 "[sig-cli] oc explain should contain proper fields description for template.openshift.io [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/9/476 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from default to non-default namespace on the same node [Suite:openshift/conformance/parallel]" + +started: 0/10/476 "[sig-cli] oc api-resources can output expected information about snapshot.storage.k8s.io api-resources [apigroup:snapshot.storage.k8s.io] [Suite:openshift/conformance/parallel]" + +started: 0/11/476 "[sig-installer][Feature:baremetal] Baremetal/OpenStack/vSphere/None/AWS/Azure/GCP platforms have a metal3 deployment [Suite:openshift/conformance/parallel]" + +started: 0/12/476 "[sig-network][Feature:tap] should create a pod with a tap interface [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 0/13/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork can perform east/west traffic between nodes two pods connected over a L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 0/14/476 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyClusterRoleEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/15/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding that also contains system:non-existing users should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/16/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising the default network [apigroup:user.openshift.io][apigroup:security.openshift.io] Pods should communicate with external host without being SNATed [Suite:openshift/conformance/parallel]" + +started: 0/17/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork is isolated from the default network with L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 0/18/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint" + +started: 0/19/476 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when fsgroup should not override fsgroup change policy if pod already has one" + +started: 0/20/476 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from default to non-default namespace on a different node [Suite:openshift/conformance/parallel]" + +started: 0/21/476 "[sig-api-machinery][Feature:APIServer] should serve openapi v3 [Suite:openshift/conformance/parallel]" + +started: 0/22/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from infra cluster pod via LoadBalancer service across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 0/23/476 "[sig-cli] oc run can use --image flag correctly for deployment [Suite:openshift/conformance/parallel]" + +started: 0/24/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork can perform east/west traffic between nodes two pods connected over a L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 0/25/476 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure required CRDs should already be installed [Suite:openshift/conformance/parallel]" + +started: 0/26/476 "[Suite:openshift/machine-config-operator/disruptive][sig-mco][OCPFeatureGate:MachineConfigNodes] [Suite:openshift/conformance/parallel]Should properly block MCN updates from a MCD that is not the associated one [apigroup:machineconfiguration.openshift.io]" + +started: 0/27/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate, but secret does not exist route update is rejected [Suite:openshift/conformance/parallel]" + +started: 0/28/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the token URL [Suite:openshift/conformance/parallel]" + +started: 0/29/476 "[sig-network][Feature:Whereabouts] should use whereabouts net-attach-def to limit IP ranges for newly created pods [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 0/30/476 "[sig-network][Feature:vlan] should create pingable pods with vlan interface on an in-container master [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:31:36 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-marketplace Catalog should serve FBC via the /v1/api/all endpoint" + +started: 0/31/476 "[sig-network][Feature:vlan] should create pingable pods with macvlan interface on an in-container master [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (400ms) 2025-09-02T07:31:38 "[sig-api-machinery][Feature:APIServer] should serve openapi v3 [Suite:openshift/conformance/parallel]" + +started: 0/32/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the logout URL [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.5s) 2025-09-02T07:31:38 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from default to non-default namespace on the same node [Suite:openshift/conformance/parallel]" + +started: 0/33/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is updated but RBAC permissions are dropped then routes are not reachable [Suite:openshift/conformance/parallel]" + +passed: (2.8s) 2025-09-02T07:31:38 "[sig-cli] oc explain should contain proper fields description for template.openshift.io [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/34/476 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestBrowserSafeAuthorizer should succeed [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/baremetal/common.go:57]: Unsupported config in supported platform detected + +skipped: (1.3s) 2025-09-02T07:31:38 "[sig-installer][Feature:baremetal] Baremetal/OpenStack/vSphere/None/AWS/Azure/GCP platforms have a metal3 deployment [Suite:openshift/conformance/parallel]" + +started: 0/35/476 "[sig-cli] oc observe works as expected with cluster operators [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:31:38 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyClusterRoleEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/36/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork isolates overlapping CIDRs with L3 primary UDN [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (1.4s) 2025-09-02T07:31:38 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from infra cluster pod via LoadBalancer service across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 0/37/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should block cluster upgrades if an incompatible operator is installed" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.6s) 2025-09-02T07:31:39 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from default to non-default namespace on a different node [Suite:openshift/conformance/parallel]" + +started: 0/38/476 "[sig-imageregistry][Feature:Image] signature TestImageAddSignature [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:31:39 "[Suite:openshift/machine-config-operator/disruptive][sig-mco][OCPFeatureGate:MachineConfigNodes] [Suite:openshift/conformance/parallel]Should properly block MCN updates from a MCD that is not the associated one [apigroup:machineconfiguration.openshift.io]" + +started: 0/39/476 "[sig-imageregistry][Feature:Image] signature TestImageRemoveSignature [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:31:39 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure required CRDs should already be installed [Suite:openshift/conformance/parallel]" + +started: 0/40/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the login URL for when there is only one IDP [Suite:openshift/conformance/parallel]" + +passed: (2.1s) 2025-09-02T07:31:39 "[sig-cli] oc run can use --image flag correctly for deployment [Suite:openshift/conformance/parallel]" + +started: 0/41/476 "[sig-network-edge][Feature:Idling] Unidling with Deployments [apigroup:route.openshift.io] should work with TCP (when fully idled) [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T07:31:40 "[sig-cli] oc observe works as expected with cluster operators [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/42/476 "[sig-arch] [Conformance] sysctl pod should not start for sysctl not on whitelist net.ipv4.ip_dynaddr [Suite:openshift/conformance/parallel/minimal]" + +passed: (3.6s) 2025-09-02T07:31:41 "[sig-cli] oc api-resources can output expected information about snapshot.storage.k8s.io api-resources [apigroup:snapshot.storage.k8s.io] [Suite:openshift/conformance/parallel]" + +started: 0/43/476 "[sig-auth][Feature:PodSecurity] restricted-v2 SCC should mutate empty securityContext to match restricted PSa profile [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (3.6s) 2025-09-02T07:31:41 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising the default network [apigroup:user.openshift.io][apigroup:security.openshift.io] Pods should communicate with external host without being SNATed [Suite:openshift/conformance/parallel]" + +started: 0/44/476 "[sig-cli] oc rsh specific flags should work well when access to a remote shell [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (3.6s) 2025-09-02T07:31:41 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding that also contains system:non-existing users should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/45/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork does not mirror EndpointSlices in namespaces not using user defined primary networks L3 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +passed: (5.1s) 2025-09-02T07:31:41 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestAuthorizationSubjectAccessReviewAPIGroup should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/46/476 "[sig-api-machinery] APIServer CR fields validation additionalCORSAllowedOrigins [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (4.4s) 2025-09-02T07:31:42 "[sig-devex][Feature:OpenShiftControllerManager] TestAutomaticCreationOfPullSecrets [apigroup:config.openshift.io][apigroup:image.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 0/47/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UDN Pod should react to k8s.ovn.org/open-default-ports annotations changes [Suite:openshift/conformance/parallel]" + +passed: (5.8s) 2025-09-02T07:31:42 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate, but secret does not exist route update is rejected [Suite:openshift/conformance/parallel]" + +started: 0/48/476 "[sig-api-machinery][Feature:ResourceQuota] Object count when exceed openshift.io/image-tags will ban to create new image references in the project [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:2 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:3 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:4 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +passed: (4.4s) 2025-09-02T07:31:44 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestBrowserSafeAuthorizer should succeed [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/49/476 "[sig-arch] ClusterOperators [apigroup:config.openshift.io] should define valid related objects [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:5 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:6 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:44Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:7 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:45Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:8 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:44Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:45Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:9 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:45Z reason:DeploymentAwaitingCancellation]}" +passed: (5.3s) 2025-09-02T07:31:45 "[sig-imageregistry][Feature:Image] signature TestImageAddSignature [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/50/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 2 External host should be able to query route advertised pods by the pod IP [Suite:openshift/conformance/parallel]" + +passed: (3s) 2025-09-02T07:31:45 "[sig-auth][Feature:PodSecurity] restricted-v2 SCC should mutate empty securityContext to match restricted PSa profile [Suite:openshift/conformance/parallel]" + +started: 0/51/476 "[sig-arch] Cluster topology single node tests Verify that OpenShift components deploy one replica in SingleReplica topology mode [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:46Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:10 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:45Z reason:DeploymentAwaitingCancellation]}" +passed: (3s) 2025-09-02T07:31:46 "[sig-api-machinery] APIServer CR fields validation additionalCORSAllowedOrigins [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/52/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller when namespace-selector is mutated should create NAD in namespaces that apply to mutated namespace-selector [Suite:openshift/conformance/parallel]" + + STEP: setting a unique value: "7rnvs64x" @ 09/02/25 07:31:39.998 + STEP: testing against OCP 4.21 @ 09/02/25 07:31:39.999 + STEP: creating a new Namespace @ 09/02/25 07:31:39.999 + STEP: applying image-puller RoleBinding @ 09/02/25 07:31:40.024 + STEP: creating the operator BuildConfig @ 09/02/25 07:31:40.106 + STEP: creating the operator ImageStream @ 09/02/25 07:31:40.136 + STEP: creating the operator tarball @ 09/02/25 07:31:40.162 + STEP: created operator tarball "/tmp/bundle-1920348929.tar" @ 09/02/25 07:31:40.163 + STEP: starting the operator build via RAW URL @ 09/02/25 07:31:40.163 + [FAILED] in [It] - /build/openshift/tests-extension/test/olmv1-incompatible.go:405 @ 09/02/25 07:31:41.508 + STEP: dumping for debugging @ 09/02/25 07:31:41.508 + +=== [cluster catalogs] === + +--- describe clustercatalog.olm.operatorframework.io/openshift-certified-operators --- + +[diag] running: describe clustercatalog.olm.operatorframework.io/openshift-certified-operators +Name: openshift-certified-operators +Namespace: +Labels: olm.operatorframework.io/metadata.name=openshift-certified-operators +Annotations: +API Version: olm.operatorframework.io/v1 +Kind: ClusterCatalog +Metadata: + Creation Timestamp: 2025-09-02T06:24:07Z + Finalizers: + olm.operatorframework.io/delete-server-cache + Generation: 1 + Resource Version: 21562 + UID: 96bce05a-c89e-48da-bbc7-29e524b77dea +Spec: + Availability Mode: Available + Priority: -200 + Source: + Image: + Poll Interval Minutes: 10 + Ref: registry.redhat.io/redhat/certified-operator-index:v4.20 + Type: Image +Status: + Conditions: + Last Transition Time: 2025-09-02T06:24:51Z + Message: Successfully unpacked and stored content from resolved source + Observed Generation: 1 + Reason: Succeeded + Status: True + Type: Progressing + Last Transition Time: 2025-09-02T06:24:51Z + Message: Serving desired content from resolved source + Observed Generation: 1 + Reason: Available + Status: True + Type: Serving + Last Unpacked: 2025-09-02T06:24:50Z + Resolved Source: + Image: + Ref: registry.redhat.io/redhat/certified-operator-index@sha256:f0ea8da2a14857e95baddc064af99305120d761aa975e9f35689fd3c8da96540 + Type: Image + Urls: + Base: https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-certified-operators +Events: + + +--- describe clustercatalog.olm.operatorframework.io/openshift-community-operators --- + +[diag] running: describe clustercatalog.olm.operatorframework.io/openshift-community-operators +Name: openshift-community-operators +Namespace: +Labels: olm.operatorframework.io/metadata.name=openshift-community-operators +Annotations: +API Version: olm.operatorframework.io/v1 +Kind: ClusterCatalog +Metadata: + Creation Timestamp: 2025-09-02T06:24:07Z + Finalizers: + olm.operatorframework.io/delete-server-cache + Generation: 1 + Resource Version: 192875 + UID: 17df0ee1-05ea-44d3-a1a4-03593631bbe8 +Spec: + Availability Mode: Available + Priority: -400 + Source: + Image: + Poll Interval Minutes: 10 + Ref: registry.redhat.io/redhat/community-operator-index:v4.20 + Type: Image +Status: + Conditions: + Last Transition Time: 2025-09-02T06:25:04Z + Message: Successfully unpacked and stored content from resolved source + Observed Generation: 1 + Reason: Succeeded + Status: True + Type: Progressing + Last Transition Time: 2025-09-02T06:25:04Z + Message: Serving desired content from resolved source + Observed Generation: 1 + Reason: Available + Status: True + Type: Serving + Last Unpacked: 2025-09-02T07:25:40Z + Resolved Source: + Image: + Ref: registry.redhat.io/redhat/community-operator-index@sha256:ba0ba48012b9839000ba7d0e870a14330c0c9597b0a655dda73bb5b0819ca0b6 + Type: Image + Urls: + Base: https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-community-operators +Events: + + +--- describe clustercatalog.olm.operatorframework.io/openshift-redhat-marketplace --- + +[diag] running: describe clustercatalog.olm.operatorframework.io/openshift-redhat-marketplace +Name: openshift-redhat-marketplace +Namespace: +Labels: olm.operatorframework.io/metadata.name=openshift-redhat-marketplace +Annotations: +API Version: olm.operatorframework.io/v1 +Kind: ClusterCatalog +Metadata: + Creation Timestamp: 2025-09-02T06:24:07Z + Finalizers: + olm.operatorframework.io/delete-server-cache + Generation: 1 + Resource Version: 22566 + UID: 84885b1e-a054-4054-afa6-17092a2b5957 +Spec: + Availability Mode: Available + Priority: -300 + Source: + Image: + Poll Interval Minutes: 10 + Ref: registry.redhat.io/redhat/redhat-marketplace-index:v4.20 + Type: Image +Status: + Conditions: + Last Transition Time: 2025-09-02T06:25:17Z + Message: Successfully unpacked and stored content from resolved source + Observed Generation: 1 + Reason: Succeeded + Status: True + Type: Progressing + Last Transition Time: 2025-09-02T06:25:17Z + Message: Serving desired content from resolved source + Observed Generation: 1 + Reason: Available + Status: True + Type: Serving + Last Unpacked: 2025-09-02T06:25:16Z + Resolved Source: + Image: + Ref: registry.redhat.io/redhat/redhat-marketplace-index@sha256:8956e63dac902a75aa467e8c0c69295859c94c4068cd83d83ee5036dedf8d91c + Type: Image + Urls: + Base: https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-redhat-marketplace +Events: + + +--- describe clustercatalog.olm.operatorframework.io/openshift-redhat-operators --- + +[diag] running: describe clustercatalog.olm.operatorframework.io/openshift-redhat-operators +Name: openshift-redhat-operators +Namespace: +Labels: olm.operatorframework.io/metadata.name=openshift-redhat-operators +Annotations: +API Version: olm.operatorframework.io/v1 +Kind: ClusterCatalog +Metadata: + Creation Timestamp: 2025-09-02T06:24:07Z + Finalizers: + olm.operatorframework.io/delete-server-cache + Generation: 1 + Resource Version: 23527 + UID: f12bbd21-b643-468a-b0a5-99e78330ab1d +Spec: + Availability Mode: Available + Priority: -100 + Source: + Image: + Poll Interval Minutes: 10 + Ref: registry.redhat.io/redhat/redhat-operator-index:v4.20 + Type: Image +Status: + Conditions: + Last Transition Time: 2025-09-02T06:25:51Z + Message: Successfully unpacked and stored content from resolved source + Observed Generation: 1 + Reason: Succeeded + Status: True + Type: Progressing + Last Transition Time: 2025-09-02T06:25:51Z + Message: Serving desired content from resolved source + Observed Generation: 1 + Reason: Available + Status: True + Type: Serving + Last Unpacked: 2025-09-02T06:25:46Z + Resolved Source: + Image: + Ref: registry.redhat.io/redhat/redhat-operator-index@sha256:101f9be65d1199cae61c2f0f195949174bfb311cb8fc83e308b0ba59de30cbf2 + Type: Image + Urls: + Base: https://catalogd-service.openshift-catalogd.svc/catalogs/openshift-redhat-operators +Events: + + + +=== [clusterextensions] namespace=install-test-ns-7rnvs64x === +(no clusterextensions found) + +[diag] running: get clusterextensions -n install-test-ns-7rnvs64x -o name + STEP: deleting file "/tmp/bundle-1920348929.tar" @ 09/02/25 07:31:46.356 + STEP: deleting ImageStream "install-test-op-7rnvs64x" @ 09/02/25 07:31:46.356 + STEP: deleting BuildConfig "install-test-op-7rnvs64x" @ 09/02/25 07:31:46.404 + STEP: deleting image-puller RoleBinding "install-test-rb-7rnvs64x" @ 09/02/25 07:31:46.426 + STEP: deleting Namespace "install-test-ns-7rnvs64x" @ 09/02/25 07:31:46.452 + +fail [/build/openshift/tests-extension/test/olmv1-incompatible.go:405]: ExitError.Stderr: "Error from server (InternalError): Internal error occurred: error getting push/pull secrets for service account install-test-ns-7rnvs64x/builder: serviceaccounts \"builder\" not found\n" +Expected success, but got an error: + <*fmt.wrapError | 0xc00069bde0>: + oc create --raw /apis/build.openshift.io/v1/namespaces/install-test-ns-7rnvs64x/buildconfigs/install-test-op-7rnvs64x/instantiatebinary?name=install-test-op-7rnvs64x&namespace=install-test-ns-7rnvs64x -f /tmp/bundle-1920348929.tar failed: exit status 1 + stderr: + Error from server (InternalError): Internal error occurred: error getting push/pull secrets for service account install-test-ns-7rnvs64x/builder: serviceaccounts "builder" not found + { + msg: "oc create --raw /apis/build.openshift.io/v1/namespaces/install-test-ns-7rnvs64x/buildconfigs/install-test-op-7rnvs64x/instantiatebinary?name=install-test-op-7rnvs64x&namespace=install-test-ns-7rnvs64x -f /tmp/bundle-1920348929.tar failed: exit status 1\nstderr:\nError from server (InternalError): Internal error occurred: error getting push/pull secrets for service account install-test-ns-7rnvs64x/builder: serviceaccounts \"builder\" not found", + err: <*exec.ExitError | 0xc0000d8360>{ + ProcessState: { + pid: 71999, + status: 256, + rusage: { + Utime: {Sec: 0, Usec: 136240}, + Stime: {Sec: 0, Usec: 31616}, + Maxrss: 105696, + Ixrss: 0, + Idrss: 0, + Isrss: 0, + Minflt: 4121, + Majflt: 0, + Nswap: 0, + Inblock: 0, + Oublock: 0, + Msgsnd: 0, + Msgrcv: 0, + Nsignals: 0, + Nvcsw: 562, + Nivcsw: 30, + }, + }, + Stderr: [69, 114, 114, 111, 114, 32, 102, 114, 111, 109, 32, 115, 101, 114, 118, 101, 114, 32, 40, 73, 110, 116, 101, 114, 110, 97, 108, 69, 114, 114, 111, 114, 41, 58, 32, 73, 110, 116, 101, 114, 110, 97, 108, 32, 101, 114, 114, 111, 114, 32, 111, 99, 99, 117, 114, 114, 101, 100, 58, 32, 101, 114, 114, 111, 114, 32, 103, 101, 116, 116, 105, 110, 103, 32, 112, 117, 115, 104, 47, 112, 117, 108, 108, 32, 115, 101, 99, 114, 101, 116, 115, 32, 102, 111, 114, 32, 115, 101, 114, 118, 105, 99, 101, 32, 97, 99, 99, 111, 117, 110, 116, 32, 105, 110, 115, 116, 97, 108, 108, 45, 116, 101, 115, 116, 45, 110, 115, 45, 55, 114, 110, 118, 115, 54, 52, 120, 47, 98, 117, 105, 108, 100, 101, 114, 58, 32, 115, 101, 114, 118, 105, 99, 101, 97, 99, 99, 111, 117, 110, 116, 115, 32, 34, 98, 117, 105, 108, 100, 101, 114, 34, 32, 110, 111, 116, 32, 102, 111, 117, 110, 100, 10], + }, + } +failed: (6.5s) 2025-09-02T07:31:46 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should block cluster upgrades if an incompatible operator is installed" + +started: 1/53/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and routes are reachable [Suite:openshift/conformance/parallel]" + +passed: (8.9s) 2025-09-02T07:31:46 "[sig-network][Feature:tap] should create a pod with a tap interface [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 1/54/476 "[sig-cli] oc basics can patch resources [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (5.5s) 2025-09-02T07:31:46 "[sig-imageregistry][Feature:Image] signature TestImageRemoveSignature [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/55/476 "[sig-cli] oc builds patch buildconfig [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:46Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:11 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:46Z reason:DeploymentAwaitingCancellation]}" +passed: (4.9s) 2025-09-02T07:31:47 "[sig-arch] [Conformance] sysctl pod should not start for sysctl not on whitelist net.ipv4.ip_dynaddr [Suite:openshift/conformance/parallel/minimal]" + +started: 1/56/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller when CR is deleted, should delete all managed NAD in each target namespace [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:48Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:12 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:48Z reason:DeploymentAwaitingCancellation]}" +passed: (2.1s) 2025-09-02T07:31:48 "[sig-arch] ClusterOperators [apigroup:config.openshift.io] should define valid related objects [Suite:openshift/conformance/parallel]" + +started: 1/57/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster platform workloads should be annotated correctly for DaemonSets [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/single_node/topology.go:138]: Test is only relevant for single replica topologies + +skipped: (600ms) 2025-09-02T07:31:48 "[sig-arch] Cluster topology single node tests Verify that OpenShift components deploy one replica in SingleReplica topology mode [Suite:openshift/conformance/parallel]" + +started: 1/58/476 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that do not expire works as expected when using a token authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (4.8s) 2025-09-02T07:31:48 "[sig-api-machinery][Feature:ResourceQuota] Object count when exceed openshift.io/image-tags will ban to create new image references in the project [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 1/59/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagSTIWithConfigChange [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (11.2s) 2025-09-02T07:31:48 "[sig-cli] oc set image can set images for pods and deployments [apigroup:image.openshift.io][apigroup:apps.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 1/60/476 "[sig-olmv1] OLMv1 should pass a trivial sanity check" + +passed: (6.2s) 2025-09-02T07:31:49 "[sig-cli] oc rsh specific flags should work well when access to a remote shell [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 1/61/476 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from non-default to default namespace on the same node [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.9s) 2025-09-02T07:31:49 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 2 External host should be able to query route advertised pods by the pod IP [Suite:openshift/conformance/parallel]" + +started: 1/62/476 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when fsgroup should default to OnRootMismatch if pod has none" + +passed: (0s) 2025-09-02T07:31:49 "[sig-olmv1] OLMv1 should pass a trivial sanity check" + +started: 1/63/476 "[sig-operator] OLM should be installed with packagemanifests at version v1 [apigroup:packages.operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:50Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-test-vlan-fqwr5 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pod3-mn5q]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:31:50Z lastTimestamp:2025-09-02T07:31:50Z reason:Unhealthy]}" +passed: (800ms) 2025-09-02T07:31:50 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster platform workloads should be annotated correctly for DaemonSets [Suite:openshift/conformance/parallel]" + +started: 1/64/476 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should delete multiple entries from an array when multiple test precondition provided [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:51Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:13 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:51Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:51Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-test-vlan-fqwr5 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pod3-mn5q]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:31:50Z lastTimestamp:2025-09-02T07:31:51Z reason:Unhealthy]}" +passed: (200ms) 2025-09-02T07:31:51 "[sig-operator] OLM should be installed with packagemanifests at version v1 [apigroup:packages.operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 1/65/476 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router converges when multiple routers are writing conflicting upgrade validation status [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:52Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-set-image-bmjcl]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:14 firstTimestamp:2025-09-02T07:31:44Z lastTimestamp:2025-09-02T07:31:52Z reason:DeploymentAwaitingCancellation]}" +passed: (3.4s) 2025-09-02T07:31:52 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller when CR is deleted, should delete all managed NAD in each target namespace [Suite:openshift/conformance/parallel]" + +started: 1/66/476 "[sig-cli] oc env can set environment variables [apigroup:apps.openshift.io][apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:31:52 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should delete multiple entries from an array when multiple test precondition provided [Suite:openshift/conformance/parallel]" + +started: 1/67/476 "[Jira:Monitoring][sig-instrumentation] sanity test should always pass [Suite:openshift/cluster-monitoring-operator/conformance/parallel]" + +passed: (3.7s) 2025-09-02T07:31:52 "[sig-cli] oc builds patch buildconfig [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 1/68/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes when primary network exist, ClusterUserDefinedNetwork status should report not-ready [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.6s) 2025-09-02T07:31:52 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from non-default to default namespace on the same node [Suite:openshift/conformance/parallel]" + +started: 1/69/476 "[sig-devex][Feature:Templates] templateinstance readiness test should report failed soon after an annotated objects has failed [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (4s) 2025-09-02T07:31:52 "[sig-cli] oc basics can patch resources [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/70/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork can perform east/west traffic between nodes for two pods connected over a L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (2.5s) 2025-09-02T07:31:52 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagSTIWithConfigChange [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/71/476 "[sig-imageregistry][Feature:ImageLookup] Image policy should update standard Kube object image fields when local names are on [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:31:53 "[Jira:Monitoring][sig-instrumentation] sanity test should always pass [Suite:openshift/cluster-monitoring-operator/conformance/parallel]" + +started: 1/72/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from guest hostNetwork pod via NodePort across different guest nodes [Suite:openshift/conformance/parallel]" + +passed: (15.1s) 2025-09-02T07:31:53 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.ping_group_range [Suite:openshift/conformance/parallel/minimal]" + +started: 1/73/476 "[sig-auth][Feature:ProjectAPI] TestProjectWatch should succeed [apigroup:project.openshift.io][apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (16.5s) 2025-09-02T07:31:54 "[sig-network][Feature:vlan] should create pingable pods with vlan interface on an in-container master [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 1/74/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the token request URL [Suite:openshift/conformance/parallel]" + +passed: (17.1s) 2025-09-02T07:31:55 "[sig-network] services when using a plugin in a mode that does not isolate namespaces by default should allow connections to pods in different namespaces on the same node via service IPs [Suite:openshift/conformance/parallel]" + +started: 1/75/476 "[sig-cli] oc explain should contain spec+status for build.openshift.io [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (7.7s) 2025-09-02T07:31:55 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller when namespace-selector is mutated should create NAD in namespaces that apply to mutated namespace-selector [Suite:openshift/conformance/parallel]" + +started: 1/76/476 "[sig-network-edge] DNS should answer queries using the local DNS endpoint [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:56Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:56Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:2 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (2.1s) 2025-09-02T07:31:56 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from guest hostNetwork pod via NodePort across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 1/77/476 "[sig-cli] oc annotate pod [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:56Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:3 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:56Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:4 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:5 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +passed: (3.2s) 2025-09-02T07:31:57 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes when primary network exist, ClusterUserDefinedNetwork status should report not-ready [Suite:openshift/conformance/parallel]" + +started: 1/78/476 "[sig-network-edge][Feature:Idling] Unidling with Deployments [apigroup:route.openshift.io] should work with UDP [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:6 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:7 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:8 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:56Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:9 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:57Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:10 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:57Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:57Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:11 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:57Z reason:DeploymentAwaitingCancellation]}" +time="2025-09-02T07:31:58Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:12 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:58Z reason:DeploymentAwaitingCancellation]}" +passed: (2.1s) 2025-09-02T07:31:58 "[sig-cli] oc explain should contain spec+status for build.openshift.io [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/79/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume when subPath is used should fail to mount image volume with invalid subPath [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:31:59Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:97bb6df123 namespace:e2e-test-vlan-hm777 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pod3-vn5n]}" message="{BackOff Back-off restarting failed container agnhost-container in pod pod3-vn5n_e2e-test-vlan-hm777(3fe8e26d-1d37-4886-b79e-94532686b865) map[firstTimestamp:2025-09-02T07:31:59Z lastTimestamp:2025-09-02T07:31:59Z reason:BackOff]}" +time="2025-09-02T07:31:59Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:13 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:31:59Z reason:DeploymentAwaitingCancellation]}" +passed: (21.9s) 2025-09-02T07:32:00 "[sig-network][Feature:vlan] should create pingable pods with macvlan interface on an in-container master [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 1/80/476 "[sig-cli] oc adm storage-admin [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:00Z" level=info msg="event interval matches DeploymentAwaitingCancellation" locator="{Kind map[deploymentconfig:test-deployment-config hmsg:977bc4f8cf namespace:e2e-test-oc-env-56r9r]}" message="{DeploymentAwaitingCancellation Deployment of version 2 awaiting cancellation of older running deployments map[count:14 firstTimestamp:2025-09-02T07:31:56Z lastTimestamp:2025-09-02T07:32:00Z reason:DeploymentAwaitingCancellation]}" +passed: (20.5s) 2025-09-02T07:32:00 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is updated but RBAC permissions are dropped then routes are not reachable [Suite:openshift/conformance/parallel]" + +started: 1/81/476 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections from pods in the default namespace to a service in another namespace on a different node [Suite:openshift/conformance/parallel]" + +passed: (22.3s) 2025-09-02T07:32:00 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork can perform east/west traffic between nodes two pods connected over a L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 1/82/476 "[sig-arch] Managed cluster should have operators on the cluster version [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (24.2s) 2025-09-02T07:32:01 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork can perform east/west traffic between nodes two pods connected over a L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 1/83/476 "[sig-network][Feature:bond] should create a pod with bond interface [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:32:02 "[sig-arch] Managed cluster should have operators on the cluster version [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/84/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should succeed with multiple pods and same image on the same node [Suite:openshift/conformance/parallel]" + +passed: (8.6s) 2025-09-02T07:32:02 "[sig-cli] oc env can set environment variables [apigroup:apps.openshift.io][apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/85/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the root URL [Suite:openshift/conformance/parallel]" + +passed: (4.7s) 2025-09-02T07:32:02 "[sig-cli] oc annotate pod [Suite:openshift/conformance/parallel]" + +started: 1/86/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs should be installed" + +passed: (8.6s) 2025-09-02T07:32:03 "[sig-imageregistry][Feature:ImageLookup] Image policy should update standard Kube object image fields when local names are on [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/87/476 "[sig-apps] poddisruptionbudgets with unhealthyPodEvictionPolicy should evict according to the IfHealthyBudget policy [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:32:03 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 Catalogs should be installed" + +started: 1/88/476 "[sig-auth][Feature:OAuthServer] OAuth Authenticator accepts sha256 access tokens [apigroup:user.openshift.io][apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.7s) 2025-09-02T07:32:03 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections from pods in the default namespace to a service in another namespace on a different node [Suite:openshift/conformance/parallel]" + +started: 1/89/476 "[sig-apimachinery] server-side-apply should function properly should clear fields when they are no longer being applied in built-in APIs [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:03Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:9f73de0a17 namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:router-add-condition-9k9rr]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.3.132:1936/healthz/ready\": dial tcp 10.129.3.132:1936: connect: connection refused map[firstTimestamp:2025-09-02T07:32:03Z lastTimestamp:2025-09-02T07:32:03Z reason:Unhealthy]}" +passed: (2s) 2025-09-02T07:32:07 "[sig-apimachinery] server-side-apply should function properly should clear fields when they are no longer being applied in built-in APIs [Suite:openshift/conformance/parallel]" + +started: 1/90/476 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestScopeEscalations should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (25.7s) 2025-09-02T07:32:07 "[sig-network-edge][Feature:Idling] Unidling with Deployments [apigroup:route.openshift.io] should work with TCP (when fully idled) [Suite:openshift/conformance/parallel]" + +started: 1/91/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork isolates overlapping CIDRs with L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (2.2s) 2025-09-02T07:32:07 "[sig-auth][Feature:OAuthServer] OAuth Authenticator accepts sha256 access tokens [apigroup:user.openshift.io][apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/92/476 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should error when the test precondition provided doesn't match [Suite:openshift/conformance/parallel]" + +passed: (31.2s) 2025-09-02T07:32:07 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when fsgroup should not override fsgroup change policy if pod already has one" + +started: 1/93/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthclientauthorizations [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (13.7s) 2025-09-02T07:32:07 "[sig-devex][Feature:Templates] templateinstance readiness test should report failed soon after an annotated objects has failed [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 1/94/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (6.5s) 2025-09-02T07:32:08 "[sig-cli] oc adm storage-admin [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/95/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the login URL for the bootstrap IDP [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:32:08 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should error when the test precondition provided doesn't match [Suite:openshift/conformance/parallel]" + +started: 1/96/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to remove the external certificate and again re-add the same external certificate then also the route is reachable [Suite:openshift/conformance/parallel]" + +passed: (5.9s) 2025-09-02T07:32:09 "[sig-network][Feature:bond] should create a pod with bond interface [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 1/97/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is deleted and re-created again but RBAC permissions are dropped then routes are not reachable [Suite:openshift/conformance/parallel]" + + I0902 07:32:09.993055 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (21.8s) 2025-09-02T07:32:10 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and routes are reachable [Suite:openshift/conformance/parallel]" + +started: 1/98/476 "[Jira:kube-controller-manager][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-kube-controller-manager-operator/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:32:10 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthclientauthorizations [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/99/476 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that expire shortly works as expected when using a token authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:32:10 "[Jira:kube-controller-manager][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-kube-controller-manager-operator/conformance/parallel]" + +started: 1/100/476 "[sig-cli] oc --request-timeout works as expected for deployment [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:11Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f795921e7e namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-add-condition-tpktm]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.1.192:1936/healthz/ready\": dial tcp 10.131.1.192:1936: connect: connection refused map[firstTimestamp:2025-09-02T07:32:11Z lastTimestamp:2025-09-02T07:32:11Z reason:Unhealthy]}" +passed: (3s) 2025-09-02T07:32:11 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestScopeEscalations should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io][apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/101/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate, but secret is not of type kubernetes.io/tls route update is rejected [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:12Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:f795921e7e namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-add-condition-tpktm]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.1.192:1936/healthz/ready\": dial tcp 10.131.1.192:1936: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:32:11Z lastTimestamp:2025-09-02T07:32:12Z reason:Unhealthy]}" +time="2025-09-02T07:32:13Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f795921e7e namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-add-condition-tpktm]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.1.192:1936/healthz/ready\": dial tcp 10.131.1.192:1936: connect: connection refused map[count:3 firstTimestamp:2025-09-02T07:32:11Z lastTimestamp:2025-09-02T07:32:13Z reason:Unhealthy]}" +time="2025-09-02T07:32:15Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:acb2ec589f namespace:e2e-test-oc-request-timeout-lf45q node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testdc-77f4fd6d6f-tjznr]}" message="{BackOff Back-off restarting failed container community-e2e-images in pod testdc-77f4fd6d6f-tjznr_e2e-test-oc-request-timeout-lf45q(1e918baa-2851-4de0-b28a-cf4788bcf7c1) map[firstTimestamp:2025-09-02T07:32:15Z lastTimestamp:2025-09-02T07:32:15Z reason:BackOff]}" +passed: (21.7s) 2025-09-02T07:32:16 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork can perform east/west traffic between nodes for two pods connected over a L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 1/102/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if the secret is not of type kubernetes.io/tls [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:16Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:acb2ec589f namespace:e2e-test-oc-request-timeout-lf45q node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testdc-77f4fd6d6f-tjznr]}" message="{BackOff Back-off restarting failed container community-e2e-images in pod testdc-77f4fd6d6f-tjznr_e2e-test-oc-request-timeout-lf45q(1e918baa-2851-4de0-b28a-cf4788bcf7c1) map[count:2 firstTimestamp:2025-09-02T07:32:15Z lastTimestamp:2025-09-02T07:32:16Z reason:BackOff]}" +passed: (4.2s) 2025-09-02T07:32:16 "[sig-cli] oc --request-timeout works as expected for deployment [Suite:openshift/conformance/parallel]" + +started: 1/103/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should succeed with pod and pull policy of Always [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:16Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:a670b9fc8c namespace:e2e-test-whereabouts-e2e-s24kw node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:whereabouts-pod-jknj4]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_whereabouts-pod-jknj4_e2e-test-whereabouts-e2e-s24kw_4a2310f5-e4a1-4b5a-b706-0115dde23e37_0(01854fbbd50945d86b0a39add858d514ff3362f4526a723fab7607c9b742cc9a): error adding pod e2e-test-whereabouts-e2e-s24kw_whereabouts-pod-jknj4 to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"01854fbbd50945d86b0a39add858d514ff3362f4526a723fab7607c9b742cc9a\" Netns:\"/var/run/netns/00af8335-e267-4975-8b74-778b22f04860\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-whereabouts-e2e-s24kw;K8S_POD_NAME=whereabouts-pod-jknj4;K8S_POD_INFRA_CONTAINER_ID=01854fbbd50945d86b0a39add858d514ff3362f4526a723fab7607c9b742cc9a;K8S_POD_UID=4a2310f5-e4a1-4b5a-b706-0115dde23e37\" Path:\"\" ERRORED: error configuring pod [e2e-test-whereabouts-e2e-s24kw/whereabouts-pod-jknj4] networking: [e2e-test-whereabouts-e2e-s24kw/whereabouts-pod-jknj4/4a2310f5-e4a1-4b5a-b706-0115dde23e37:whereaboutstestbridge]: error adding container to network \"whereaboutstestbridge\": error at storage engine: Could not allocate IP in range: ip: 192.168.2.225 / - 192.168.2.230 / range: 192.168.2.224/29 / excludeRanges: [192.168.2.225/30]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:16Z lastTimestamp:2025-09-02T07:32:16Z reason:FailedCreatePodSandBox]}" +passed: (4.6s) 2025-09-02T07:32:17 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate, but secret is not of type kubernetes.io/tls route update is rejected [Suite:openshift/conformance/parallel]" + +started: 1/104/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For cluster user defined networks When the network topology is Layer 3 UDN pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv4 [Suite:openshift/conformance/parallel]" + +passed: (7.4s) 2025-09-02T07:32:17 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to remove the external certificate and again re-add the same external certificate then also the route is reachable [Suite:openshift/conformance/parallel]" + +started: 1/105/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork isolates overlapping CIDRs with L3 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (34.8s) 2025-09-02T07:32:17 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork does not mirror EndpointSlices in namespaces not using user defined primary networks L3 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +started: 1/106/476 "[sig-storage] Managed cluster should have no crashlooping recycler pods over four minutes [Suite:openshift/conformance/parallel]" + +passed: (14.7s) 2025-09-02T07:32:18 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should succeed with multiple pods and same image on the same node [Suite:openshift/conformance/parallel]" + +started: 1/107/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the authorize URL [Suite:openshift/conformance/parallel]" + +passed: (21.2s) 2025-09-02T07:32:18 "[sig-network-edge] DNS should answer queries using the local DNS endpoint [Suite:openshift/conformance/parallel]" + +started: 1/108/476 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections to services in the default namespace from a pod in another namespace on the same node [Suite:openshift/conformance/parallel]" + +passed: (18.6s) 2025-09-02T07:32:18 "[sig-node] [FeatureGate:ImageVolume] ImageVolume when subPath is used should fail to mount image volume with invalid subPath [Suite:openshift/conformance/parallel]" + +started: 1/109/476 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that expire shortly works as expected when using a code authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:19Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:3e96bf05a4 namespace:e2e-test-whereabouts-e2e-s24kw node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:whereabouts-pod-jknj4]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_whereabouts-pod-jknj4_e2e-test-whereabouts-e2e-s24kw_4a2310f5-e4a1-4b5a-b706-0115dde23e37_0(9adfdc656b4eb159b61c5c6de3416ab423fe82f35ae625503cb8114db553a8d5): error adding pod e2e-test-whereabouts-e2e-s24kw_whereabouts-pod-jknj4 to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"9adfdc656b4eb159b61c5c6de3416ab423fe82f35ae625503cb8114db553a8d5\" Netns:\"/var/run/netns/47b3b6aa-8dc9-4a1e-9596-c81ea5472481\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-whereabouts-e2e-s24kw;K8S_POD_NAME=whereabouts-pod-jknj4;K8S_POD_INFRA_CONTAINER_ID=9adfdc656b4eb159b61c5c6de3416ab423fe82f35ae625503cb8114db553a8d5;K8S_POD_UID=4a2310f5-e4a1-4b5a-b706-0115dde23e37\" Path:\"\" ERRORED: error configuring pod [e2e-test-whereabouts-e2e-s24kw/whereabouts-pod-jknj4] networking: [e2e-test-whereabouts-e2e-s24kw/whereabouts-pod-jknj4/4a2310f5-e4a1-4b5a-b706-0115dde23e37:whereaboutstestbridge]: error adding container to network \"whereaboutstestbridge\": error at storage engine: Could not allocate IP in range: ip: 192.168.2.225 / - 192.168.2.230 / range: 192.168.2.224/29 / excludeRanges: [192.168.2.225/30]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:19Z lastTimestamp:2025-09-02T07:32:19Z reason:FailedCreatePodSandBox]}" +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.7s) 2025-09-02T07:32:20 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For cluster user defined networks When the network topology is Layer 3 UDN pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv4 [Suite:openshift/conformance/parallel]" + +started: 1/110/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.8s) 2025-09-02T07:32:21 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections to services in the default namespace from a pod in another namespace on the same node [Suite:openshift/conformance/parallel]" + +started: 1/111/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions is isolated from the default network with L3 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (13.2s) 2025-09-02T07:32:23 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is deleted and re-created again but RBAC permissions are dropped then routes are not reachable [Suite:openshift/conformance/parallel]" + +started: 1/112/476 "[sig-cli] oc explain should contain proper fields description for authorization.openshift.io [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (6.2s) 2025-09-02T07:32:23 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if the secret is not of type kubernetes.io/tls [Suite:openshift/conformance/parallel]" + +started: 1/113/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster workloads in annotated namespaces should be modified if CPUPartitioningMode = AllNodes [Suite:openshift/conformance/parallel]" + +passed: (25.4s) 2025-09-02T07:32:24 "[sig-network-edge][Feature:Idling] Unidling with Deployments [apigroup:route.openshift.io] should work with UDP [Suite:openshift/conformance/parallel]" + +started: 1/114/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 3 Pods should communicate with external host without being SNATed [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.5s) 2025-09-02T07:32:26 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 3 Pods should communicate with external host without being SNATed [Suite:openshift/conformance/parallel]" + +started: 1/115/476 "[sig-cli] oc --request-timeout works as expected [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (48.8s) 2025-09-02T07:32:28 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the logout URL [Suite:openshift/conformance/parallel]" + +started: 1/116/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for build.openshift.io/v1, Resource=builds [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (24.5s) 2025-09-02T07:32:28 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the root URL [Suite:openshift/conformance/parallel]" + +started: 1/117/476 "[sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (31.7s) 2025-09-02T07:32:28 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the token request URL [Suite:openshift/conformance/parallel]" + +started: 1/118/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from infra cluster pod via NodePort across different infra nodes [Suite:openshift/conformance/parallel]" + +passed: (50.2s) 2025-09-02T07:32:28 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the token URL [Suite:openshift/conformance/parallel]" + +started: 1/119/476 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.ip_unprivileged_port_start [Suite:openshift/conformance/parallel/minimal]" + +passed: (3.6s) 2025-09-02T07:32:28 "[sig-cli] oc explain should contain proper fields description for authorization.openshift.io [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/120/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for template.openshift.io/v1, Resource=templates [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (47.1s) 2025-09-02T07:32:28 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the login URL for when there is only one IDP [Suite:openshift/conformance/parallel]" + +started: 1/121/476 "[sig-network][Feature:tuning] pod should not start for sysctls not on whitelist [apigroup:k8s.cni.cncf.io] net.ipv4.conf.all.send_redirects [Suite:openshift/conformance/parallel]" + +passed: (38.8s) 2025-09-02T07:32:28 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that do not expire works as expected when using a token authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/122/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions isolates overlapping CIDRs with L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (45.4s) 2025-09-02T07:32:29 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UDN Pod should react to k8s.ovn.org/open-default-ports annotations changes [Suite:openshift/conformance/parallel]" + +started: 1/123/476 "[sig-network][Feature:vlan] should create pingable pods with ipvlan interface on an in-container master [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:29Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:acb2ec589f namespace:e2e-test-oc-request-timeout-lf45q node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testdc-77f4fd6d6f-tjznr]}" message="{BackOff Back-off restarting failed container community-e2e-images in pod testdc-77f4fd6d6f-tjznr_e2e-test-oc-request-timeout-lf45q(1e918baa-2851-4de0-b28a-cf4788bcf7c1) map[count:3 firstTimestamp:2025-09-02T07:32:15Z lastTimestamp:2025-09-02T07:32:29Z reason:BackOff]}" +passed: (5.4s) 2025-09-02T07:32:30 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster workloads in annotated namespaces should be modified if CPUPartitioningMode = AllNodes [Suite:openshift/conformance/parallel]" + +started: 1/124/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for image.openshift.io/v1, Resource=imagestreams [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:32:31 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for build.openshift.io/v1, Resource=builds [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/125/476 "[sig-imageregistry] Image registry [apigroup:route.openshift.io] should redirect on blob pull [apigroup:image.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (1.6s) 2025-09-02T07:32:31 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from infra cluster pod via NodePort across different infra nodes [Suite:openshift/conformance/parallel]" + +started: 1/126/476 "[sig-api-machinery][Feature:APIServer] TestTLSDefaults [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:32:32 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for template.openshift.io/v1, Resource=templates [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/127/476 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with invalid namespace labels on should fail to create namespace with invalid fsgroup label" + +passed: (4.8s) 2025-09-02T07:32:32 "[sig-cli] oc --request-timeout works as expected [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/128/476 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should delete an entry from an array with a test precondition provided [Suite:openshift/conformance/parallel]" + +passed: (15s) 2025-09-02T07:32:32 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should succeed with pod and pull policy of Always [Suite:openshift/conformance/parallel]" + +started: 1/129/476 "[sig-api-machinery][Feature:APIServer] should serve openapi v3 discovery [Suite:openshift/conformance/parallel]" + +passed: (23.7s) 2025-09-02T07:32:33 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the login URL for the bootstrap IDP [Suite:openshift/conformance/parallel]" + +started: 1/130/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagDockerWithConfigChange [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (21.5s) 2025-09-02T07:32:33 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that expire shortly works as expected when using a token authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/131/476 "[sig-cli] oc adm serviceaccounts [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:32:33 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with invalid namespace labels on should fail to create namespace with invalid fsgroup label" + +started: 1/132/476 "[sig-arch] Managed cluster should ensure platform components have system-* priority class associated [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:32:33 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for image.openshift.io/v1, Resource=imagestreams [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/133/476 "[sig-cli] oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:33Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:f7de27a622 namespace:e2e-test-tuning-cwl78 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testpod]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_testpod_e2e-test-tuning-cwl78_25a5fd8c-71ae-4bf4-b3ef-400bb19ecc5a_0(9fad9c5a0fc41649e92b0f279641f544959719fd627432296cbde35a779c85cc): error adding pod e2e-test-tuning-cwl78_testpod to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"9fad9c5a0fc41649e92b0f279641f544959719fd627432296cbde35a779c85cc\" Netns:\"/var/run/netns/0db56027-720c-4593-8c54-a32599f64db4\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-tuning-cwl78;K8S_POD_NAME=testpod;K8S_POD_INFRA_CONTAINER_ID=9fad9c5a0fc41649e92b0f279641f544959719fd627432296cbde35a779c85cc;K8S_POD_UID=25a5fd8c-71ae-4bf4-b3ef-400bb19ecc5a\" Path:\"\" ERRORED: error configuring pod [e2e-test-tuning-cwl78/testpod] networking: [e2e-test-tuning-cwl78/testpod/25a5fd8c-71ae-4bf4-b3ef-400bb19ecc5a:tuningnadwithdisallowedsysctls]: error adding container to network \"tuningnadwithdisallowedsysctls\": plugin type=\"tuning\" failed (add): Sysctl net.ipv4.conf.all.send_redirects is not allowed. Only the following sysctls are allowed: [^net.ipv4.conf.IFNAME.accept_redirects$ ^net.ipv4.conf.IFNAME.accept_source_route$ ^net.ipv4.conf.IFNAME.arp_accept$ ^net.ipv4.conf.IFNAME.arp_notify$ ^net.ipv4.conf.IFNAME.disable_policy$ ^net.ipv4.conf.IFNAME.secure_redirects$ ^net.ipv4.conf.IFNAME.send_redirects$ ^net.ipv6.conf.IFNAME.accept_ra$ ^net.ipv6.conf.IFNAME.accept_redirects$ ^net.ipv6.conf.IFNAME.accept_source_route$ ^net.ipv6.conf.IFNAME.arp_accept$ ^net.ipv6.conf.IFNAME.arp_notify$ ^net.ipv6.neigh.IFNAME.base_reachable_time_ms$ ^net.ipv6.neigh.IFNAME.retrans_time_ms$]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:33Z lastTimestamp:2025-09-02T07:32:33Z reason:FailedCreatePodSandBox]}" +time="2025-09-02T07:32:33Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:ce9ba5aaa5 namespace:e2e-test-whereabouts-e2e-s24kw node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:whereabouts-pod-jknj4]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_whereabouts-pod-jknj4_e2e-test-whereabouts-e2e-s24kw_4a2310f5-e4a1-4b5a-b706-0115dde23e37_0(59963b22a524da8c8d798e5dac12e72116c12cd7b97f67427baa6e0b96936093): error adding pod e2e-test-whereabouts-e2e-s24kw_whereabouts-pod-jknj4 to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"59963b22a524da8c8d798e5dac12e72116c12cd7b97f67427baa6e0b96936093\" Netns:\"/var/run/netns/2b481dd7-5f0e-4d5f-9af4-4ea1d04bdf1e\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-whereabouts-e2e-s24kw;K8S_POD_NAME=whereabouts-pod-jknj4;K8S_POD_INFRA_CONTAINER_ID=59963b22a524da8c8d798e5dac12e72116c12cd7b97f67427baa6e0b96936093;K8S_POD_UID=4a2310f5-e4a1-4b5a-b706-0115dde23e37\" Path:\"\" ERRORED: error configuring pod [e2e-test-whereabouts-e2e-s24kw/whereabouts-pod-jknj4] networking: [e2e-test-whereabouts-e2e-s24kw/whereabouts-pod-jknj4/4a2310f5-e4a1-4b5a-b706-0115dde23e37:whereaboutstestbridge]: error adding container to network \"whereaboutstestbridge\": error at storage engine: Could not allocate IP in range: ip: 192.168.2.225 / - 192.168.2.230 / range: 192.168.2.224/29 / excludeRanges: [192.168.2.225/30]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:33Z lastTimestamp:2025-09-02T07:32:33Z reason:FailedCreatePodSandBox]}" +passed: (200ms) 2025-09-02T07:32:34 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should delete an entry from an array with a test precondition provided [Suite:openshift/conformance/parallel]" + +started: 1/134/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when there are no restrictions should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:32:34 "[sig-api-machinery][Feature:APIServer] should serve openapi v3 discovery [Suite:openshift/conformance/parallel]" + +started: 1/135/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes pods within namespace should be isolated when deny policy is present in L3 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:35Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:5cb581c45f namespace:e2e-test-tuning-cwl78 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testpod]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_testpod_e2e-test-tuning-cwl78_25a5fd8c-71ae-4bf4-b3ef-400bb19ecc5a_0(8fdc50326c4a8c64145f204aa589649cba1cab7e5f049c6c3018a22425b9f586): error adding pod e2e-test-tuning-cwl78_testpod to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"8fdc50326c4a8c64145f204aa589649cba1cab7e5f049c6c3018a22425b9f586\" Netns:\"/var/run/netns/0e51b087-8b2d-4f7d-a7a3-41bb7c9392e6\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-tuning-cwl78;K8S_POD_NAME=testpod;K8S_POD_INFRA_CONTAINER_ID=8fdc50326c4a8c64145f204aa589649cba1cab7e5f049c6c3018a22425b9f586;K8S_POD_UID=25a5fd8c-71ae-4bf4-b3ef-400bb19ecc5a\" Path:\"\" ERRORED: error configuring pod [e2e-test-tuning-cwl78/testpod] networking: [e2e-test-tuning-cwl78/testpod/25a5fd8c-71ae-4bf4-b3ef-400bb19ecc5a:tuningnadwithdisallowedsysctls]: error adding container to network \"tuningnadwithdisallowedsysctls\": plugin type=\"tuning\" failed (add): Sysctl net.ipv4.conf.all.send_redirects is not allowed. Only the following sysctls are allowed: [^net.ipv4.conf.IFNAME.accept_redirects$ ^net.ipv4.conf.IFNAME.accept_source_route$ ^net.ipv4.conf.IFNAME.arp_accept$ ^net.ipv4.conf.IFNAME.arp_notify$ ^net.ipv4.conf.IFNAME.disable_policy$ ^net.ipv4.conf.IFNAME.secure_redirects$ ^net.ipv4.conf.IFNAME.send_redirects$ ^net.ipv6.conf.IFNAME.accept_ra$ ^net.ipv6.conf.IFNAME.accept_redirects$ ^net.ipv6.conf.IFNAME.accept_source_route$ ^net.ipv6.conf.IFNAME.arp_accept$ ^net.ipv6.conf.IFNAME.arp_notify$ ^net.ipv6.neigh.IFNAME.base_reachable_time_ms$ ^net.ipv6.neigh.IFNAME.retrans_time_ms$]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:35Z lastTimestamp:2025-09-02T07:32:35Z reason:FailedCreatePodSandBox]}" +skip [github.com/openshift/origin/test/extended/apiserver/tls.go:18]: skipping because it was broken in master + +skipped: (1.9s) 2025-09-02T07:32:35 "[sig-api-machinery][Feature:APIServer] TestTLSDefaults [Suite:openshift/conformance/parallel]" + +started: 1/136/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should succeed if image volume is not existing but unused [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:32:35 "[sig-arch] Managed cluster should ensure platform components have system-* priority class associated [Suite:openshift/conformance/parallel]" + +started: 1/137/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to remove the external certificate then also the route is reachable and serves the default certificate [Suite:openshift/conformance/parallel]" + +passed: (6.2s) 2025-09-02T07:32:36 "[sig-cli] oc basics can create deploymentconfig and clusterquota [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/138/476 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"lb-ext.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +passed: (1.7s) 2025-09-02T07:32:37 "[sig-cli] oc explain should contain proper fields description for apps.openshift.io [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/139/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller should create NAD according to spec in each target namespace and report active namespaces [Suite:openshift/conformance/parallel]" + +passed: (1.8s) 2025-09-02T07:32:38 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when there are no restrictions should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/140/476 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_manual [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.8s) 2025-09-02T07:32:38 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagDockerWithConfigChange [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/141/476 "[sig-cli] oc status returns expected help messages [apigroup:project.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:41Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:36b79e79a9 namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-remove-condition-m4zm5]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 500 map[firstTimestamp:2025-09-02T07:32:41Z lastTimestamp:2025-09-02T07:32:41Z reason:Unhealthy]}" +passed: (5.6s) 2025-09-02T07:32:41 "[sig-cli] oc adm serviceaccounts [Suite:openshift/conformance/parallel]" + +started: 1/142/476 "[Suite:openshift/machine-config-operator/disruptive][sig-mco][OCPFeatureGate:MachineConfigNodes] [Suite:openshift/conformance/parallel]Should have MCN properties matching associated node properties for nodes in default MCPs [apigroup:machineconfiguration.openshift.io]" + +passed: (1.8s) 2025-09-02T07:32:41 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_manual [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/143/476 "[sig-auth][Feature:OAuthServer] OAuth server has the correct token and certificate fallback semantics [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:42Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:acb2ec589f namespace:e2e-test-oc-request-timeout-lf45q node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testdc-77f4fd6d6f-tjznr]}" message="{BackOff Back-off restarting failed container community-e2e-images in pod testdc-77f4fd6d6f-tjznr_e2e-test-oc-request-timeout-lf45q(1e918baa-2851-4de0-b28a-cf4788bcf7c1) map[count:4 firstTimestamp:2025-09-02T07:32:15Z lastTimestamp:2025-09-02T07:32:42Z reason:BackOff]}" +passed: (1m4s) 2025-09-02T07:32:42 "[sig-network][Feature:Whereabouts] should use whereabouts net-attach-def to limit IP ranges for newly created pods [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 1/144/476 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.ip_local_port_range [Suite:openshift/conformance/parallel/minimal]" + +passed: (200ms) 2025-09-02T07:32:42 "[Suite:openshift/machine-config-operator/disruptive][sig-mco][OCPFeatureGate:MachineConfigNodes] [Suite:openshift/conformance/parallel]Should have MCN properties matching associated node properties for nodes in default MCPs [apigroup:machineconfiguration.openshift.io]" + +started: 1/145/476 "[sig-cli] oc api-resources can output expected information about image.openshift.io api-resources [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (23.3s) 2025-09-02T07:32:43 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the authorize URL [Suite:openshift/conformance/parallel]" + +started: 1/146/476 "[sig-cli] oc api-resources can output expected information about build.openshift.io api-resources [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:32:43 "[sig-cli] oc status returns expected help messages [apigroup:project.openshift.io][apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/147/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Rolebinding restrictions tests single project should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.4s) 2025-09-02T07:32:43 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller should create NAD according to spec in each target namespace and report active namespaces [Suite:openshift/conformance/parallel]" + +started: 1/148/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use same external certificate, but RBAC permissions are dropped route update is rejected [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-test-vlan-z9zhh node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pod3-hw42]}" message="{Unhealthy Readiness probe failed: map[firstTimestamp:2025-09-02T07:32:43Z lastTimestamp:2025-09-02T07:32:43Z reason:Unhealthy]}" +passed: (49.3s) 2025-09-02T07:32:43 "[sig-auth][Feature:ProjectAPI] TestProjectWatch should succeed [apigroup:project.openshift.io][apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/149/476 "[sig-devex][Feature:Templates] templateinstance impersonation tests [apigroup:user.openshift.io][apigroup:authorization.openshift.io] should pass impersonation deletion tests [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (24s) 2025-09-02T07:32:44 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that expire shortly works as expected when using a code authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/150/476 "[sig-cli] oc probe can ensure the probe command is functioning as expected on pods [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:44Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:76c9ee49b6 namespace:e2e-image-volume-329 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:image-volume-test]}" message="{BackOff Back-off pulling image \"nonexistent:latest\" map[firstTimestamp:2025-09-02T07:32:44Z lastTimestamp:2025-09-02T07:32:44Z reason:BackOff]}" +time="2025-09-02T07:32:44Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-test-vlan-z9zhh node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pod3-hw42]}" message="{Unhealthy Readiness probe failed: map[count:2 firstTimestamp:2025-09-02T07:32:43Z lastTimestamp:2025-09-02T07:32:44Z reason:Unhealthy]}" +time="2025-09-02T07:32:45Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:76c9ee49b6 namespace:e2e-image-volume-329 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:image-volume-test]}" message="{BackOff Back-off pulling image \"nonexistent:latest\" map[count:2 firstTimestamp:2025-09-02T07:32:44Z lastTimestamp:2025-09-02T07:32:45Z reason:BackOff]}" +passed: (2.6s) 2025-09-02T07:32:45 "[sig-auth][Feature:OAuthServer] OAuth server has the correct token and certificate fallback semantics [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/151/476 "[sig-olmv1][OCPFeatureGate:NewOLM] OLMv1 CRDs should be installed" + +passed: (1.5s) 2025-09-02T07:32:46 "[sig-cli] oc api-resources can output expected information about build.openshift.io api-resources [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/152/476 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_imageChange_nonAutomatic [apigroup:image.openshift.io][apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (9.4s) 2025-09-02T07:32:46 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should succeed if image volume is not existing but unused [Suite:openshift/conformance/parallel]" + +started: 1/153/476 "[sig-imageregistry][Feature:ImageLookup] Image policy should perform lookup when the object has the resolve-names annotation [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:32:46 "[sig-cli] oc api-resources can output expected information about image.openshift.io api-resources [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/154/476 "[sig-auth][Feature:ProjectAPI] TestProjectIsNamespace should succeed [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:32:46 "[sig-olmv1][OCPFeatureGate:NewOLM] OLMv1 CRDs should be installed" + +started: 1/155/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from guest cluster PodNetwork pod via LoadBalancer service across different guest nodes [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:32:46 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Rolebinding restrictions tests single project should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/156/476 "[sig-operator] OLM should be installed with subscriptions at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (16.6s) 2025-09-02T07:32:46 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.ip_unprivileged_port_start [Suite:openshift/conformance/parallel/minimal]" + +started: 1/157/476 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with invalid namespace labels on should fail to create namespace with invalid selinux label" + +passed: (16.3s) 2025-09-02T07:32:47 "[sig-network][Feature:vlan] should create pingable pods with ipvlan interface on an in-container master [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 1/158/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UserDefinedNetwork CRD controller should delete NetworkAttachmentDefinition when UserDefinedNetwork is deleted [Suite:openshift/conformance/parallel]" + +passed: (16.9s) 2025-09-02T07:32:47 "[sig-network][Feature:tuning] pod should not start for sysctls not on whitelist [apigroup:k8s.cni.cncf.io] net.ipv4.conf.all.send_redirects [Suite:openshift/conformance/parallel]" + +started: 1/159/476 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router converges when multiple routers are writing conflicting status [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:32:47 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with invalid namespace labels on should fail to create namespace with invalid selinux label" + +started: 1/160/476 "[sig-network-edge][Feature:Idling] Unidling [apigroup:apps.openshift.io][apigroup:route.openshift.io] should work with UDP [Suite:openshift/conformance/parallel]" + +passed: (58.2s) 2025-09-02T07:32:48 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when fsgroup should default to OnRootMismatch if pod has none" + +started: 1/161/476 "[sig-auth][Feature:OAuthServer] well-known endpoint should be reachable [apigroup:route.openshift.io] [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T07:32:48 "[sig-operator] OLM should be installed with subscriptions at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 1/162/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions isolates overlapping CIDRs with L3 primary UDN [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (1.6s) 2025-09-02T07:32:49 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from guest cluster PodNetwork pod via LoadBalancer service across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 1/163/476 "[sig-auth][Feature:OpenShiftAuthorization] self-SAR compatibility TestBootstrapPolicySelfSubjectAccessReviews should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:32:49 "[sig-auth][Feature:ProjectAPI] TestProjectIsNamespace should succeed [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/164/476 "[sig-cli] oc basics can show correct whoami result [Suite:openshift/conformance/parallel]" + +passed: (5.5s) 2025-09-02T07:32:50 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use same external certificate, but RBAC permissions are dropped route update is rejected [Suite:openshift/conformance/parallel]" + +started: 1/165/476 "[sig-network] services basic functionality should allow connections to another pod on the same node via a service IP [Suite:openshift/conformance/parallel]" + +passed: (13.9s) 2025-09-02T07:32:50 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes pods within namespace should be isolated when deny policy is present in L3 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +started: 1/166/476 "[sig-cli] oc adm who-can [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (13.5s) 2025-09-02T07:32:51 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"lb-ext.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +started: 1/167/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions does not mirror EndpointSlices in namespaces not using user defined primary networks L3 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +passed: (1.8s) 2025-09-02T07:32:51 "[sig-auth][Feature:OAuthServer] well-known endpoint should be reachable [apigroup:route.openshift.io] [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/168/476 "[sig-cli] oc can route traffic to services [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.5s) 2025-09-02T07:32:52 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UserDefinedNetwork CRD controller should delete NetworkAttachmentDefinition when UserDefinedNetwork is deleted [Suite:openshift/conformance/parallel]" + +started: 1/169/476 "[sig-auth][Feature:SecurityContextConstraints] TestPodUpdateSCCEnforcement with service account [Suite:openshift/conformance/parallel]" + +passed: (6.6s) 2025-09-02T07:32:52 "[sig-cli] oc probe can ensure the probe command is functioning as expected on pods [Suite:openshift/conformance/parallel]" + +started: 1/170/476 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_imageChange [apigroup:apps.openshift.io][apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:32:53 "[sig-cli] oc basics can show correct whoami result [Suite:openshift/conformance/parallel]" + +started: 1/171/476 "[sig-apps][apigroup:apps.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Deployments on HighlyAvailableArbiterMode topology should be created on master nodes when no node selected [Suite:openshift/conformance/parallel]" + +passed: (3.2s) 2025-09-02T07:32:54 "[sig-auth][Feature:OpenShiftAuthorization] self-SAR compatibility TestBootstrapPolicySelfSubjectAccessReviews should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/172/476 "[sig-network][Feature:tuning] pod should not start for sysctls not on whitelist [apigroup:k8s.cni.cncf.io] net.ipv4.conf.IFNAME.arp_filter [Suite:openshift/conformance/parallel]" + +passed: (9.4s) 2025-09-02T07:32:54 "[sig-devex][Feature:Templates] templateinstance impersonation tests [apigroup:user.openshift.io][apigroup:authorization.openshift.io] should pass impersonation deletion tests [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/173/476 "[sig-auth][Feature:SecurityContextConstraints] TestPodDefaultCapabilities [Suite:openshift/conformance/parallel]" + +passed: (32.8s) 2025-09-02T07:32:54 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +started: 1/174/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions is isolated from the default network with L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (4s) 2025-09-02T07:32:55 "[sig-cli] oc adm who-can [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/175/476 "[sig-cli] oc explain should contain spec+status for project.openshift.io [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (8.2s) 2025-09-02T07:32:56 "[sig-imageregistry][Feature:ImageLookup] Image policy should perform lookup when the object has the resolve-names annotation [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/176/476 "[sig-cli] oc explain should contain proper fields description for user.openshift.io [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:56Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-bmxnx pod:unsafe]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (2.2s) 2025-09-02T07:32:56 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_imageChange [apigroup:apps.openshift.io][apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/177/476 "[sig-cli] oc adm release extract image-references [Suite:openshift/conformance/parallel]" + +passed: (3s) 2025-09-02T07:32:56 "[sig-auth][Feature:SecurityContextConstraints] TestPodUpdateSCCEnforcement with service account [Suite:openshift/conformance/parallel]" + +started: 1/178/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should fail when image does not exist [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:56Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:36b79e79a9 namespace:e2e-test-router-stress-j6wks node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:router-fv4hw]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 500 map[firstTimestamp:2025-09-02T07:32:56Z lastTimestamp:2025-09-02T07:32:56Z reason:Unhealthy]}" +skip [github.com/openshift/origin/test/extended/two_node/common.go:24]: Cluster is not in HighlyAvailableArbiter topology, skipping test + +skipped: (2.2s) 2025-09-02T07:32:57 "[sig-apps][apigroup:apps.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Deployments on HighlyAvailableArbiterMode topology should be created on master nodes when no node selected [Suite:openshift/conformance/parallel]" + +started: 1/179/476 "[Jira:oauth-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/oauth-apiserver/conformance/parallel]" + +passed: (20.3s) 2025-09-02T07:32:57 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to remove the external certificate then also the route is reachable and serves the default certificate [Suite:openshift/conformance/parallel]" + +started: 1/180/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for image.openshift.io/v1, Resource=images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:57Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:36b79e79a9 namespace:e2e-test-router-stress-j6wks node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:router-2rfsf]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 500 map[firstTimestamp:2025-09-02T07:32:57Z lastTimestamp:2025-09-02T07:32:57Z reason:Unhealthy]}" +passed: (0s) 2025-09-02T07:32:57 "[Jira:oauth-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/oauth-apiserver/conformance/parallel]" + +started: 1/181/476 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections from pods in the default namespace to a service in another namespace on the same node [Suite:openshift/conformance/parallel]" + +passed: (14.3s) 2025-09-02T07:32:58 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.ip_local_port_range [Suite:openshift/conformance/parallel/minimal]" + +started: 1/182/476 "[sig-arch] Managed cluster should ensure pods use downstream images from our release image with proper ImagePullPolicy [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:58Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:f3afd72a66 namespace:e2e-test-tuning-fscpq node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testpod]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_testpod_e2e-test-tuning-fscpq_3ce285e8-fb5f-4080-adaa-e93ebc694f70_0(04b62e9f151129cd6acc67fe2f15d03eccb1dcad2dffca762bf09f7045190847): error adding pod e2e-test-tuning-fscpq_testpod to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"04b62e9f151129cd6acc67fe2f15d03eccb1dcad2dffca762bf09f7045190847\" Netns:\"/var/run/netns/45640f8a-d603-4f4a-9504-99c17d774aca\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-tuning-fscpq;K8S_POD_NAME=testpod;K8S_POD_INFRA_CONTAINER_ID=04b62e9f151129cd6acc67fe2f15d03eccb1dcad2dffca762bf09f7045190847;K8S_POD_UID=3ce285e8-fb5f-4080-adaa-e93ebc694f70\" Path:\"\" ERRORED: error configuring pod [e2e-test-tuning-fscpq/testpod] networking: [e2e-test-tuning-fscpq/testpod/3ce285e8-fb5f-4080-adaa-e93ebc694f70:tuningnadwithdisallowedsysctls]: error adding container to network \"tuningnadwithdisallowedsysctls\": plugin type=\"tuning\" failed (add): Sysctl net.ipv4.conf.IFNAME.arp_filter is not allowed. Only the following sysctls are allowed: [^net.ipv4.conf.IFNAME.accept_redirects$ ^net.ipv4.conf.IFNAME.accept_source_route$ ^net.ipv4.conf.IFNAME.arp_accept$ ^net.ipv4.conf.IFNAME.arp_notify$ ^net.ipv4.conf.IFNAME.disable_policy$ ^net.ipv4.conf.IFNAME.secure_redirects$ ^net.ipv4.conf.IFNAME.send_redirects$ ^net.ipv6.conf.IFNAME.accept_ra$ ^net.ipv6.conf.IFNAME.accept_redirects$ ^net.ipv6.conf.IFNAME.accept_source_route$ ^net.ipv6.conf.IFNAME.arp_accept$ ^net.ipv6.conf.IFNAME.arp_notify$ ^net.ipv6.neigh.IFNAME.base_reachable_time_ms$ ^net.ipv6.neigh.IFNAME.retrans_time_ms$]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:58Z lastTimestamp:2025-09-02T07:32:58Z reason:FailedCreatePodSandBox]}" +passed: (1.9s) 2025-09-02T07:32:58 "[sig-cli] oc explain should contain spec+status for project.openshift.io [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 1/183/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For the default network Pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv6 [Suite:openshift/conformance/parallel]" + + STEP: Creating a kubernetes client @ 09/02/25 07:32:09.216 +I0902 07:32:09.463850 75443 network_segmentation.go:2281] Waiting for ServiceAccount "default" to be provisioned... +I0902 07:32:09.579463 75443 network_segmentation.go:2287] Waiting on permissions in namespace "e2e-network-segmentation-policy-e2e-4632" ... +I0902 07:32:09.588364 75443 network_segmentation.go:2300] Waiting on SCC annotations in namespace "e2e-network-segmentation-policy-e2e-4632" ... + STEP: Creating namespace e2e-network-segmentation-policy-e2e-4632-yellow @ 09/02/25 07:32:09.863 + STEP: Creating namespace e2e-network-segmentation-policy-e2e-4632-blue @ 09/02/25 07:32:09.9 + STEP: creating the attachment configuration for sharednet-f99xn in namespace e2e-network-segmentation-policy-e2e-4632-yellow @ 09/02/25 07:32:09.952 + STEP: creating the attachment configuration for sharednet-f99xn in namespace e2e-network-segmentation-policy-e2e-4632-blue @ 09/02/25 07:32:09.985 + STEP: creating client/server pods @ 09/02/25 07:32:10.047 + STEP: instantiating the UDN pod allow-server-pod @ 09/02/25 07:32:10.047 + STEP: asserting the UDN pod allow-server-pod reaches the `Ready` state @ 09/02/25 07:32:10.122 + STEP: instantiating the UDN pod deny-server-pod @ 09/02/25 07:32:16.171 + STEP: asserting the UDN pod deny-server-pod reaches the `Ready` state @ 09/02/25 07:32:16.208 + STEP: instantiating the UDN pod client-pod @ 09/02/25 07:32:22.265 + STEP: asserting the UDN pod client-pod reaches the `Ready` state @ 09/02/25 07:32:22.397 + STEP: asserting the server pods have an IP from the configured range @ 09/02/25 07:32:28.44 + STEP: asserting the allow server pod IP 203.203.0.4 is from the configured range 203.203.0.0/16 @ 09/02/25 07:32:28.461 + STEP: asserting the deny server pod IP 203.203.0.6 is from the configured range 203.203.0.0/16 @ 09/02/25 07:32:28.468 + STEP: asserting the *client* pod can contact the allow server pod exposed endpoint @ 09/02/25 07:32:28.468 +I0902 07:32:28.468541 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000' +I0902 07:32:29.834559 75443 client.go:1081] Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000: +StdOut> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 +StdErr> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 + +I0902 07:32:34.836034 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000' +I0902 07:32:36.269958 75443 client.go:1081] Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000: +StdOut> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 +StdErr> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 + +I0902 07:32:41.271966 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000' +I0902 07:32:42.628207 75443 client.go:1081] Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000: +StdOut> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 +StdErr> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 + +I0902 07:32:47.631928 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000' +I0902 07:32:49.049620 75443 client.go:1081] Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000: +StdOut> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 +StdErr> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 + +I0902 07:32:54.050750 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000' +I0902 07:32:55.481881 75443 client.go:1081] Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000: +StdOut> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 +StdErr> +% Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 +curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached +command terminated with exit code 28 + + [FAILED] in [It] - github.com/openshift/origin/test/extended/networking/network_segmentation_policy.go:255 @ 09/02/25 07:32:58.47 +I0902 07:32:58.470580 75443 framework.go:593] Dumping pod state for namespace e2e-network-segmentation-policy-e2e-4632 +I0902 07:32:58.470701 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 get pods -n e2e-network-segmentation-policy-e2e-4632 -o yaml' +I0902 07:32:58.683264 75443 framework.go:599] apiVersion: v1 +items: [] +kind: List +metadata: + resourceVersion: "" +I0902 07:32:58.683342 75443 framework.go:593] Dumping pod state for namespace e2e-network-segmentation-policy-e2e-4632-yellow +I0902 07:32:58.683460 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 get pods -n e2e-network-segmentation-policy-e2e-4632-yellow -o yaml' +I0902 07:32:58.840153 75443 framework.go:599] apiVersion: v1 +items: +- apiVersion: v1 + kind: Pod + metadata: + annotations: + k8s.ovn.org/pod-networks: '{"default":{"ip_addresses":["10.129.3.140/23"],"mac_address":"0a:58:0a:81:03:8c","routes":[{"dest":"10.128.0.0/14","nextHop":"10.129.2.1"},{"dest":"100.64.0.0/16","nextHop":"10.129.2.1"}],"ip_address":"10.129.3.140/23","role":"infrastructure-locked"},"e2e-network-segmentation-policy-e2e-4632-yellow/sharednet-f99xn":{"ip_addresses":["203.203.0.4/16"],"mac_address":"0a:58:cb:cb:00:04","gateway_ips":["203.203.0.1"],"routes":[{"dest":"172.30.0.0/16","nextHop":"203.203.0.1"},{"dest":"100.65.0.0/16","nextHop":"203.203.0.1"}],"ip_address":"203.203.0.4/16","gateway_ip":"203.203.0.1","tunnel_id":10,"role":"primary"}}' + k8s.v1.cni.cncf.io/network-status: |- + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.129.3.140" + ], + "mac": "0a:58:0a:81:03:8c", + "dns": {} + },{ + "name": "ovn-kubernetes", + "interface": "ovn-udn1", + "ips": [ + "203.203.0.4" + ], + "mac": "0a:58:cb:cb:00:04", + "default": true, + "dns": {} + }] + openshift.io/scc: restricted-v2 + seccomp.security.alpha.kubernetes.io/pod: runtime/default + security.openshift.io/validated-scc-subject-type: user + creationTimestamp: "2025-09-02T07:32:10Z" + generation: 1 + labels: + foo: bar + name: allow-server-pod + namespace: e2e-network-segmentation-policy-e2e-4632-yellow + resourceVersion: "211048" + uid: f7ba2916-1e37-4ad2-9385-76f5f581c011 + spec: + containers: + - args: + - netexec + - --http-port + - "9000" + image: quay.io/openshift/community-e2e-images:e2e-1-registry-k8s-io-e2e-test-images-agnhost-2-53-S5hiptYgC5MyFXZH + imagePullPolicy: IfNotPresent + name: agnhost-container + resources: {} + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + runAsUser: 1016680000 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-4rj8b + readOnly: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + imagePullSecrets: + - name: default-dockercfg-jxrjk + nodeName: ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 + nodeSelector: + kubernetes.io/hostname: ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 + preemptionPolicy: PreemptLowerPriority + priority: 0 + restartPolicy: Always + schedulerName: default-scheduler + securityContext: + fsGroup: 1016680000 + runAsNonRoot: true + seLinuxOptions: + level: s0:c129,c84 + seccompProfile: + type: RuntimeDefault + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 0 + tolerations: + - effect: NoExecute + key: node.kubernetes.io/not-ready + operator: Exists + tolerationSeconds: 300 + - effect: NoExecute + key: node.kubernetes.io/unreachable + operator: Exists + tolerationSeconds: 300 + volumes: + - name: kube-api-access-4rj8b + projected: + defaultMode: 420 + sources: + - serviceAccountToken: + expirationSeconds: 3607 + path: token + - configMap: + items: + - key: ca.crt + path: ca.crt + name: kube-root-ca.crt + - downwardAPI: + items: + - fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + path: namespace + - configMap: + items: + - key: service-ca.crt + path: service-ca.crt + name: openshift-service-ca.crt + status: + conditions: + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:15Z" + status: "True" + type: PodReadyToStartContainers + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:10Z" + status: "True" + type: Initialized + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:15Z" + status: "True" + type: Ready + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:15Z" + status: "True" + type: ContainersReady + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:10Z" + status: "True" + type: PodScheduled + containerStatuses: + - containerID: cri-o://573cffdb084ee76a6139f13b352b8b715a7235a5c93b7bc67129feda997f1781 + image: quay.io/openshift/community-e2e-images:e2e-1-registry-k8s-io-e2e-test-images-agnhost-2-53-S5hiptYgC5MyFXZH + imageID: quay.io/openshift/community-e2e-images@sha256:1c5d47ecd9c4fca235ec0eeb9af0c39d8dd981ae703805a1f23676a9bf47c3bb + lastState: {} + name: agnhost-container + ready: true + resources: {} + restartCount: 0 + started: true + state: + running: + startedAt: "2025-09-02T07:32:13Z" + user: + linux: + gid: 0 + supplementalGroups: + - 0 + - 1016680000 + uid: 1016680000 + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-4rj8b + readOnly: true + recursiveReadOnly: Disabled + hostIP: 10.0.128.2 + hostIPs: + - ip: 10.0.128.2 + phase: Running + podIP: 10.129.3.140 + podIPs: + - ip: 10.129.3.140 + qosClass: BestEffort + startTime: "2025-09-02T07:32:10Z" +- apiVersion: v1 + kind: Pod + metadata: + annotations: + k8s.ovn.org/pod-networks: '{"default":{"ip_addresses":["10.129.3.141/23"],"mac_address":"0a:58:0a:81:03:8d","routes":[{"dest":"10.128.0.0/14","nextHop":"10.129.2.1"},{"dest":"100.64.0.0/16","nextHop":"10.129.2.1"}],"ip_address":"10.129.3.141/23","role":"infrastructure-locked"},"e2e-network-segmentation-policy-e2e-4632-yellow/sharednet-f99xn":{"ip_addresses":["203.203.0.6/16"],"mac_address":"0a:58:cb:cb:00:06","gateway_ips":["203.203.0.1"],"routes":[{"dest":"172.30.0.0/16","nextHop":"203.203.0.1"},{"dest":"100.65.0.0/16","nextHop":"203.203.0.1"}],"ip_address":"203.203.0.6/16","gateway_ip":"203.203.0.1","tunnel_id":12,"role":"primary"}}' + k8s.v1.cni.cncf.io/network-status: |- + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.129.3.141" + ], + "mac": "0a:58:0a:81:03:8d", + "dns": {} + },{ + "name": "ovn-kubernetes", + "interface": "ovn-udn1", + "ips": [ + "203.203.0.6" + ], + "mac": "0a:58:cb:cb:00:06", + "default": true, + "dns": {} + }] + openshift.io/scc: restricted-v2 + seccomp.security.alpha.kubernetes.io/pod: runtime/default + security.openshift.io/validated-scc-subject-type: user + creationTimestamp: "2025-09-02T07:32:16Z" + generation: 1 + labels: + abc: xyz + name: deny-server-pod + namespace: e2e-network-segmentation-policy-e2e-4632-yellow + resourceVersion: "211495" + uid: 221546e0-bbeb-46f8-90a5-52d3e5186120 + spec: + containers: + - args: + - netexec + - --http-port + - "9000" + image: quay.io/openshift/community-e2e-images:e2e-1-registry-k8s-io-e2e-test-images-agnhost-2-53-S5hiptYgC5MyFXZH + imagePullPolicy: IfNotPresent + name: agnhost-container + resources: {} + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + runAsUser: 1016680000 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-zcmwl + readOnly: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + imagePullSecrets: + - name: default-dockercfg-jxrjk + nodeName: ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 + nodeSelector: + kubernetes.io/hostname: ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 + preemptionPolicy: PreemptLowerPriority + priority: 0 + restartPolicy: Always + schedulerName: default-scheduler + securityContext: + fsGroup: 1016680000 + runAsNonRoot: true + seLinuxOptions: + level: s0:c129,c84 + seccompProfile: + type: RuntimeDefault + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 0 + tolerations: + - effect: NoExecute + key: node.kubernetes.io/not-ready + operator: Exists + tolerationSeconds: 300 + - effect: NoExecute + key: node.kubernetes.io/unreachable + operator: Exists + tolerationSeconds: 300 + volumes: + - name: kube-api-access-zcmwl + projected: + defaultMode: 420 + sources: + - serviceAccountToken: + expirationSeconds: 3607 + path: token + - configMap: + items: + - key: ca.crt + path: ca.crt + name: kube-root-ca.crt + - downwardAPI: + items: + - fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + path: namespace + - configMap: + items: + - key: service-ca.crt + path: service-ca.crt + name: openshift-service-ca.crt + status: + conditions: + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:19Z" + status: "True" + type: PodReadyToStartContainers + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:16Z" + status: "True" + type: Initialized + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:19Z" + status: "True" + type: Ready + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:19Z" + status: "True" + type: ContainersReady + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:16Z" + status: "True" + type: PodScheduled + containerStatuses: + - containerID: cri-o://360dbdcccadad33d194e7548bee16dc952b564f0cf4cbd394887e1cb1c305400 + image: quay.io/openshift/community-e2e-images:e2e-1-registry-k8s-io-e2e-test-images-agnhost-2-53-S5hiptYgC5MyFXZH + imageID: quay.io/openshift/community-e2e-images@sha256:1c5d47ecd9c4fca235ec0eeb9af0c39d8dd981ae703805a1f23676a9bf47c3bb + lastState: {} + name: agnhost-container + ready: true + resources: {} + restartCount: 0 + started: true + state: + running: + startedAt: "2025-09-02T07:32:18Z" + user: + linux: + gid: 0 + supplementalGroups: + - 0 + - 1016680000 + uid: 1016680000 + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-zcmwl + readOnly: true + recursiveReadOnly: Disabled + hostIP: 10.0.128.2 + hostIPs: + - ip: 10.0.128.2 + phase: Running + podIP: 10.129.3.141 + podIPs: + - ip: 10.129.3.141 + qosClass: BestEffort + startTime: "2025-09-02T07:32:16Z" +kind: List +metadata: + resourceVersion: "" +I0902 07:32:58.841519 75443 framework.go:593] Dumping pod state for namespace e2e-network-segmentation-policy-e2e-4632-blue +I0902 07:32:58.841628 75443 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 get pods -n e2e-network-segmentation-policy-e2e-4632-blue -o yaml' +I0902 07:32:59.020726 75443 framework.go:599] apiVersion: v1 +items: +- apiVersion: v1 + kind: Pod + metadata: + annotations: + k8s.ovn.org/pod-networks: '{"default":{"ip_addresses":["10.130.2.52/23"],"mac_address":"0a:58:0a:82:02:34","routes":[{"dest":"10.128.0.0/14","nextHop":"10.130.2.1"},{"dest":"100.64.0.0/16","nextHop":"10.130.2.1"}],"ip_address":"10.130.2.52/23","role":"infrastructure-locked"},"e2e-network-segmentation-policy-e2e-4632-blue/sharednet-f99xn":{"ip_addresses":["203.203.0.8/16"],"mac_address":"0a:58:cb:cb:00:08","gateway_ips":["203.203.0.1"],"routes":[{"dest":"172.30.0.0/16","nextHop":"203.203.0.1"},{"dest":"100.65.0.0/16","nextHop":"203.203.0.1"}],"ip_address":"203.203.0.8/16","gateway_ip":"203.203.0.1","tunnel_id":14,"role":"primary"}}' + k8s.v1.cni.cncf.io/network-status: |- + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.130.2.52" + ], + "mac": "0a:58:0a:82:02:34", + "dns": {} + },{ + "name": "ovn-kubernetes", + "interface": "ovn-udn1", + "ips": [ + "203.203.0.8" + ], + "mac": "0a:58:cb:cb:00:08", + "default": true, + "dns": {} + }] + openshift.io/scc: restricted-v2 + seccomp.security.alpha.kubernetes.io/pod: runtime/default + security.openshift.io/validated-scc-subject-type: user + creationTimestamp: "2025-09-02T07:32:22Z" + generation: 1 + name: client-pod + namespace: e2e-network-segmentation-policy-e2e-4632-blue + resourceVersion: "212152" + uid: 262e07ba-57e5-474a-a5a0-a3be3ca916b7 + spec: + containers: + - args: + - pause + image: quay.io/openshift/community-e2e-images:e2e-1-registry-k8s-io-e2e-test-images-agnhost-2-53-S5hiptYgC5MyFXZH + imagePullPolicy: IfNotPresent + name: agnhost-container + resources: {} + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + runAsUser: 1016690000 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-frvgx + readOnly: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + imagePullSecrets: + - name: default-dockercfg-v76c9 + nodeName: ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 + nodeSelector: + kubernetes.io/hostname: ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 + preemptionPolicy: PreemptLowerPriority + priority: 0 + restartPolicy: Always + schedulerName: default-scheduler + securityContext: + fsGroup: 1016690000 + runAsNonRoot: true + seLinuxOptions: + level: s0:c129,c89 + seccompProfile: + type: RuntimeDefault + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 0 + tolerations: + - effect: NoExecute + key: node.kubernetes.io/not-ready + operator: Exists + tolerationSeconds: 300 + - effect: NoExecute + key: node.kubernetes.io/unreachable + operator: Exists + tolerationSeconds: 300 + volumes: + - name: kube-api-access-frvgx + projected: + defaultMode: 420 + sources: + - serviceAccountToken: + expirationSeconds: 3607 + path: token + - configMap: + items: + - key: ca.crt + path: ca.crt + name: kube-root-ca.crt + - downwardAPI: + items: + - fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + path: namespace + - configMap: + items: + - key: service-ca.crt + path: service-ca.crt + name: openshift-service-ca.crt + status: + conditions: + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:25Z" + status: "True" + type: PodReadyToStartContainers + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:22Z" + status: "True" + type: Initialized + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:25Z" + status: "True" + type: Ready + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:25Z" + status: "True" + type: ContainersReady + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:32:22Z" + status: "True" + type: PodScheduled + containerStatuses: + - containerID: cri-o://503c873436cc6bd5abaf874eb9de87f0fd1e66c5930c5b58727b210db478c089 + image: quay.io/openshift/community-e2e-images:e2e-1-registry-k8s-io-e2e-test-images-agnhost-2-53-S5hiptYgC5MyFXZH + imageID: quay.io/openshift/community-e2e-images@sha256:240f70d1e35ea70f9b83666607f08a25f40b15b4f6b28ab61ae6149f56f99250 + lastState: {} + name: agnhost-container + ready: true + resources: {} + restartCount: 0 + started: true + state: + running: + startedAt: "2025-09-02T07:32:24Z" + user: + linux: + gid: 0 + supplementalGroups: + - 0 + - 1016690000 + uid: 1016690000 + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-frvgx + readOnly: true + recursiveReadOnly: Disabled + hostIP: 10.0.128.6 + hostIPs: + - ip: 10.0.128.6 + phase: Running + podIP: 10.130.2.52 + podIPs: + - ip: 10.130.2.52 + qosClass: BestEffort + startTime: "2025-09-02T07:32:22Z" +kind: List +metadata: + resourceVersion: "" + STEP: Collecting events from namespace "e2e-network-segmentation-policy-e2e-4632". @ 09/02/25 07:32:59.021 + STEP: Found 0 events. @ 09/02/25 07:32:59.042 +I0902 07:32:59.078448 75443 resource.go:168] POD NODE PHASE GRACE CONDITIONS +I0902 07:32:59.078511 75443 resource.go:178] +I0902 07:32:59.097455 75443 dump.go:81] skipping dumping cluster info - cluster too large + STEP: Destroying namespace "e2e-network-segmentation-policy-e2e-4632" for this suite. @ 09/02/25 07:32:59.099 + STEP: Destroying namespace "e2e-network-segmentation-policy-e2e-4632-yellow" for this suite. @ 09/02/25 07:32:59.123 + STEP: Destroying namespace "e2e-network-segmentation-policy-e2e-4632-blue" for this suite. @ 09/02/25 07:32:59.151 + +fail [github.com/openshift/origin/test/extended/networking/network_segmentation_policy.go:255]: Timed out after 30.001s. +cmd output: +Unexpected error: + <*fmt.wrapError | 0xc00725cec0>: + Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000: + StdOut> + % Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 + curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached + command terminated with exit code 28 + StdErr> + % Total % Received % Xferd Average Speed Time Time Time Current + Dload Upload Total Spent Left Speed + + 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0 + 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0 + curl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached + command terminated with exit code 28 + exit status 28 + + { + msg: "Error running oc --kubeconfig=/tmp/kubeconfig-182615149 exec client-pod -n e2e-network-segmentation-policy-e2e-4632-blue -- curl --connect-timeout 1 --max-time 5 203.203.0.4:9000:\nStdOut>\n% Total % Received % Xferd Average Speed Time Time Time Current\n Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0\ncurl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached\ncommand terminated with exit code 28\nStdErr>\n% Total % Received % Xferd Average Speed Time Time Time Current\n Dload Upload Total Spent Left Speed\n\r 0 0 0 0 0 0 0 0 --:--:-- --:--:-- --:--:-- 0\r 0 0 0 0 0 0 0 0 --:--:-- 0:00:01 --:--:-- 0\ncurl: (28) Failed to connect to 203.203.0.4 port 9000 after 1000 ms: Timeout was reached\ncommand terminated with exit code 28\nexit status 28\n", + err: <*exec.ExitError | 0xc006b9cfa0>{ + ProcessState: { + pid: 79592, + status: 7168, + rusage: { + Utime: {Sec: 0, Usec: 184661}, + Stime: {Sec: 0, Usec: 59385}, + Maxrss: 247076, + Ixrss: 0, + Idrss: 0, + Isrss: 0, + Minflt: 4451, + Majflt: 0, + Nswap: 0, + Inblock: 0, + Oublock: 0, + Msgsnd: 0, + Msgrcv: 0, + Nsignals: 0, + Nvcsw: 839, + Nivcsw: 80, + }, + }, + Stderr: nil, + }, + } +occurred +failed: (50s) 2025-09-02T07:32:59 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/184/476 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyEndpointConfirmNoEscalation [apigroup:authorization.openshift.io] should succeed [Suite:openshift/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:32:59 "[sig-cli] oc explain should contain proper fields description for user.openshift.io [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/185/476 "[sig-auth][Feature:SecurityContextConstraints] TestAllowedSCCViaRBAC with service account [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:32:59Z" level=info msg="event interval matches MarketplaceStartupProbeFailure" locator="{Kind map[hmsg:d25e6fe1ef namespace:openshift-marketplace node:ci-op-0k0qibps-871dd-dt55f-master-0 pod:redhat-operators-bpv85]}" message="{Unhealthy Startup probe failed: timeout: failed to connect service \":50051\" within 1s\n map[firstTimestamp:2025-09-02T07:32:59Z lastTimestamp:2025-09-02T07:32:59Z reason:Unhealthy]}" +time="2025-09-02T07:32:59Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:b6613d69d1 namespace:e2e-test-tuning-fscpq node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:testpod]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_testpod_e2e-test-tuning-fscpq_3ce285e8-fb5f-4080-adaa-e93ebc694f70_0(384993f8905372062bc35cf09276e33a96591bcf09bb2fbcd48536cbffe5e331): error adding pod e2e-test-tuning-fscpq_testpod to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"384993f8905372062bc35cf09276e33a96591bcf09bb2fbcd48536cbffe5e331\" Netns:\"/var/run/netns/5becdd24-d750-47fb-bff3-944e6e346729\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-tuning-fscpq;K8S_POD_NAME=testpod;K8S_POD_INFRA_CONTAINER_ID=384993f8905372062bc35cf09276e33a96591bcf09bb2fbcd48536cbffe5e331;K8S_POD_UID=3ce285e8-fb5f-4080-adaa-e93ebc694f70\" Path:\"\" ERRORED: error configuring pod [e2e-test-tuning-fscpq/testpod] networking: [e2e-test-tuning-fscpq/testpod/3ce285e8-fb5f-4080-adaa-e93ebc694f70:tuningnadwithdisallowedsysctls]: error adding container to network \"tuningnadwithdisallowedsysctls\": plugin type=\"tuning\" failed (add): Sysctl net.ipv4.conf.IFNAME.arp_filter is not allowed. Only the following sysctls are allowed: [^net.ipv4.conf.IFNAME.accept_redirects$ ^net.ipv4.conf.IFNAME.accept_source_route$ ^net.ipv4.conf.IFNAME.arp_accept$ ^net.ipv4.conf.IFNAME.arp_notify$ ^net.ipv4.conf.IFNAME.disable_policy$ ^net.ipv4.conf.IFNAME.secure_redirects$ ^net.ipv4.conf.IFNAME.send_redirects$ ^net.ipv6.conf.IFNAME.accept_ra$ ^net.ipv6.conf.IFNAME.accept_redirects$ ^net.ipv6.conf.IFNAME.accept_source_route$ ^net.ipv6.conf.IFNAME.arp_accept$ ^net.ipv6.conf.IFNAME.arp_notify$ ^net.ipv6.neigh.IFNAME.base_reachable_time_ms$ ^net.ipv6.neigh.IFNAME.retrans_time_ms$]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:32:59Z lastTimestamp:2025-09-02T07:32:59Z reason:FailedCreatePodSandBox]}" +passed: (8s) 2025-09-02T07:32:59 "[sig-network] services basic functionality should allow connections to another pod on the same node via a service IP [Suite:openshift/conformance/parallel]" + +started: 2/186/476 "[sig-cli] oc adm images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.7s) 2025-09-02T07:33:00 "[sig-cli] oc adm release extract image-references [Suite:openshift/conformance/parallel]" + +started: 2/187/476 "[sig-network] multicast when using one of the OpenshiftSDN modes 'redhat/openshift-ovs-multitenant, redhat/openshift-ovs-networkpolicy' should block multicast traffic in namespaces where it is disabled [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:33:00 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for image.openshift.io/v1, Resource=images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/188/476 "[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster when using openshift-sdn should be able to get the sdn ovs flows [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.7s) 2025-09-02T07:33:00 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections from pods in the default namespace to a service in another namespace on the same node [Suite:openshift/conformance/parallel]" + +started: 2/189/476 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_configChange [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.3s) 2025-09-02T07:33:01 "[sig-arch] Managed cluster should ensure pods use downstream images from our release image with proper ImagePullPolicy [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/190/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes when primary network exist, UserDefinedNetwork status should report not-ready [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (2.3s) 2025-09-02T07:33:02 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For the default network Pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv6 [Suite:openshift/conformance/parallel]" + +started: 2/191/476 "[sig-arch] Managed cluster should ensure control plane pods do not run in best-effort QoS [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:33:02Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:76c9ee49b6 namespace:e2e-image-volume-2584 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:image-volume-test]}" message="{BackOff Back-off pulling image \"nonexistent:latest\" map[firstTimestamp:2025-09-02T07:33:02Z lastTimestamp:2025-09-02T07:33:02Z reason:BackOff]}" +passed: (1.2s) 2025-09-02T07:33:03 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes when primary network exist, UserDefinedNetwork status should report not-ready [Suite:openshift/conformance/parallel]" + +started: 2/192/476 "[sig-operator] OLM should have imagePullPolicy:IfNotPresent on thier deployments [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:33:03 "[sig-arch] Managed cluster should ensure control plane pods do not run in best-effort QoS [Suite:openshift/conformance/parallel]" + +started: 2/193/476 "[sig-cli] oc completion returns expected help messages [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:512]: Not using one of the specified OpenshiftSDN modes + +skipped: (1.9s) 2025-09-02T07:33:04 "[sig-network] multicast when using one of the OpenshiftSDN modes 'redhat/openshift-ovs-multitenant, redhat/openshift-ovs-networkpolicy' should block multicast traffic in namespaces where it is disabled [Suite:openshift/conformance/parallel]" + +started: 2/194/476 "[sig-apimachinery] server-side-apply should function properly should clear fields when they are no longer being applied on CRDs [Suite:openshift/conformance/parallel]" + +passed: (6.3s) 2025-09-02T07:33:04 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should fail when image does not exist [Suite:openshift/conformance/parallel]" + +started: 2/195/476 "[sig-imageregistry] Image --dry-run should not delete resources [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:33:04 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_configChange [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/196/476 "[sig-operator] OLM should be installed with clusterserviceversions at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:526]: Not using openshift-sdn + +skipped: (2.6s) 2025-09-02T07:33:04 "[sig-instrumentation] Prometheus [apigroup:image.openshift.io] when installed on the cluster when using openshift-sdn should be able to get the sdn ovs flows [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/197/476 "[sig-cli] oc explain should contain spec+status for route.openshift.io [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (4.5s) 2025-09-02T07:33:05 "[sig-cli] oc adm images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/198/476 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestScopedImpersonation should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:33:05 "[sig-operator] OLM should be installed with clusterserviceversions at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/199/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UserDefinedNetwork CRD controller pod connected to UserDefinedNetwork cannot be deleted when being used [Suite:openshift/conformance/parallel]" + +passed: (600ms) 2025-09-02T07:33:06 "[sig-operator] OLM should have imagePullPolicy:IfNotPresent on thier deployments [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/200/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if inline certificate is also present [Suite:openshift/conformance/parallel]" + +passed: (1.4s) 2025-09-02T07:33:07 "[sig-apimachinery] server-side-apply should function properly should clear fields when they are no longer being applied on CRDs [Suite:openshift/conformance/parallel]" + +started: 2/201/476 "[sig-operator] OLM should be installed with catalogsources at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (14.1s) 2025-09-02T07:33:07 "[sig-cli] oc can route traffic to services [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/202/476 "[sig-auth][Feature:ProjectAPI] TestInvalidRoleRefs should succeed [apigroup:authorization.openshift.io][apigroup:user.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:33:07 "[sig-cli] oc completion returns expected help messages [Suite:openshift/conformance/parallel]" + +started: 2/203/476 "[sig-cli] oc explain should contain proper fields description for config.openshift.io [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:33:07 "[sig-cli] oc explain should contain spec+status for route.openshift.io [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/204/476 "[sig-cli] oc basics can process templates [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:33:08Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-k8dtz pod:test3]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:33:08Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-k8dtz pod:test5]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:33:08Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-k8dtz-namespace-2 pod:test6]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (2.7s) 2025-09-02T07:33:08 "[sig-imageregistry] Image --dry-run should not delete resources [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/205/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for user.openshift.io/v1, Resource=groups [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (7.7s) 2025-09-02T07:33:08 "[sig-auth][Feature:SecurityContextConstraints] TestAllowedSCCViaRBAC with service account [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/206/476 "[sig-operator] an end user can use OLM Report Upgradeable in OLM ClusterOperators status [apigroup:config.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:33:08 "[sig-operator] OLM should be installed with catalogsources at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/207/476 "[sig-cli] oc adm role-reapers [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.5s) 2025-09-02T07:33:08 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestScopedImpersonation should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/208/476 "[sig-auth][Feature:SecurityContextConstraints] TestAllowedSCCViaRBAC [apigroup:project.openshift.io][apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:33:10 "[sig-cli] oc explain should contain proper fields description for config.openshift.io [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/209/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions does not mirror EndpointSlices in namespaces not using user defined primary networks L2 dualstack primary UDN [Suite:openshift/conformance/parallel]" + + I0902 07:33:10.501454 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (1.5s) 2025-09-02T07:33:11 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for user.openshift.io/v1, Resource=groups [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/210/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UserDefinedNetwork CRD controller should create NetworkAttachmentDefinition according to spec [Suite:openshift/conformance/parallel]" + +passed: (4s) 2025-09-02T07:33:11 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if inline certificate is also present [Suite:openshift/conformance/parallel]" + +started: 2/211/476 "[sig-devex][Feature:Templates] templateinstance security tests [apigroup:authorization.openshift.io][apigroup:template.openshift.io] should pass security tests [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.2s) 2025-09-02T07:33:11 "[sig-cli] oc basics can process templates [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/212/476 "[sig-cli] oc api-resources can output expected information about route.openshift.io api-resources and api-version [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (19.8s) 2025-09-02T07:33:12 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions does not mirror EndpointSlices in namespaces not using user defined primary networks L3 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/213/476 "[sig-cli] oc explain should contain proper spec+status for CRDs [Suite:openshift/conformance/parallel]" + +passed: (2.1s) 2025-09-02T07:33:12 "[sig-operator] an end user can use OLM Report Upgradeable in OLM ClusterOperators status [apigroup:config.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/214/476 "[sig-auth][Feature:LDAP] LDAP IDP should authenticate against an ldap server [apigroup:user.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (17.1s) 2025-09-02T07:33:12 "[sig-network][Feature:tuning] pod should not start for sysctls not on whitelist [apigroup:k8s.cni.cncf.io] net.ipv4.conf.IFNAME.arp_filter [Suite:openshift/conformance/parallel]" + +started: 2/215/476 "[sig-cli] oc explain should contain proper fields description for image.openshift.io [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:33:14 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UserDefinedNetwork CRD controller should create NetworkAttachmentDefinition according to spec [Suite:openshift/conformance/parallel]" + +started: 2/216/476 "[sig-cli] oc adm new-project [apigroup:project.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:33:14 "[sig-cli] oc api-resources can output expected information about route.openshift.io api-resources and api-version [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/217/476 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure CRD of standard group can not be created [Suite:openshift/conformance/parallel]" + +passed: (42.3s) 2025-09-02T07:33:15 "[sig-imageregistry] Image registry [apigroup:route.openshift.io] should redirect on blob pull [apigroup:image.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/218/476 "[sig-cli] oc run can use --image flag correctly [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.2s) 2025-09-02T07:33:16 "[sig-cli] oc explain should contain proper fields description for image.openshift.io [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/219/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagSTI [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.2s) 2025-09-02T07:33:17 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure CRD of standard group can not be created [Suite:openshift/conformance/parallel]" + +started: 2/220/476 "[sig-cli] oc explain should contain proper fields description for rangeallocations of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:33:17 "[sig-cli] oc run can use --image flag correctly [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/221/476 "[sig-network][endpoints] admission [apigroup:config.openshift.io] blocks manual creation of Endpoints pointing to the cluster or service network [Suite:openshift/conformance/parallel]" + +passed: (8.2s) 2025-09-02T07:33:18 "[sig-cli] oc adm role-reapers [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/222/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate without proper permissions [Suite:openshift/conformance/parallel]" + +passed: (1.8s) 2025-09-02T07:33:18 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagSTI [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/223/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is deleted then routes are not reachable [Suite:openshift/conformance/parallel]" + +passed: (1.4s) 2025-09-02T07:33:19 "[sig-cli] oc explain should contain proper fields description for rangeallocations of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/224/476 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router reports the expected host names in admitted routes' statuses [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:33:20Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-gt64z pod:test3]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (19.8s) 2025-09-02T07:33:20 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyEndpointConfirmNoEscalation [apigroup:authorization.openshift.io] should succeed [Suite:openshift/conformance/parallel]" + +started: 2/225/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising the default network [apigroup:user.openshift.io][apigroup:security.openshift.io] External host should be able to query route advertised pods by the pod IP [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:33:20Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-gt64z pod:test5]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +time="2025-09-02T07:33:20Z" level=info msg="event interval matches FailedScheduling" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-8q8mj pod:test6]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (1.6s) 2025-09-02T07:33:20 "[sig-network][endpoints] admission [apigroup:config.openshift.io] blocks manual creation of Endpoints pointing to the cluster or service network [Suite:openshift/conformance/parallel]" + +started: 2/226/476 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should prevent communication between pods in different namespaces on different nodes [Suite:openshift/conformance/parallel]" + +passed: (31.7s) 2025-09-02T07:33:20 "[sig-network-edge][Feature:Idling] Unidling [apigroup:apps.openshift.io][apigroup:route.openshift.io] should work with UDP [Suite:openshift/conformance/parallel]" + +started: 2/227/476 "[sig-network][Feature:tuning] pod sysctl should not affect existing pods [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (25.8s) 2025-09-02T07:33:21 "[sig-auth][Feature:SecurityContextConstraints] TestPodDefaultCapabilities [Suite:openshift/conformance/parallel]" + +started: 2/228/476 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyLocalRoleEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (9.5s) 2025-09-02T07:33:21 "[sig-devex][Feature:Templates] templateinstance security tests [apigroup:authorization.openshift.io][apigroup:template.openshift.io] should pass security tests [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/229/476 "[sig-devex][Feature:Templates] template-api TestTemplate [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (11.9s) 2025-09-02T07:33:22 "[sig-auth][Feature:SecurityContextConstraints] TestAllowedSCCViaRBAC [apigroup:project.openshift.io][apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/230/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For cluster user defined networks When the network topology is Layer 3 UDN pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv6 [Suite:openshift/conformance/parallel]" + +passed: (14.1s) 2025-09-02T07:33:22 "[sig-auth][Feature:ProjectAPI] TestInvalidRoleRefs should succeed [apigroup:authorization.openshift.io][apigroup:user.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/231/476 "[sig-auth][Feature:OpenShiftAuthorization] The default cluster RBAC policy should have correct RBAC rules [Suite:openshift/conformance/parallel]" + +passed: (1m45s) 2025-09-02T07:33:23 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork is isolated from the default network with L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/232/476 "[Suite:openshift/machine-config-operator/disruptive][sig-mco][OCPFeatureGate:MachineConfigNodes] [Suite:openshift/conformance/parallel]Should properly block MCN updates by impersonation of the MCD SA [apigroup:machineconfiguration.openshift.io]" + +passed: (4s) 2025-09-02T07:33:23 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate without proper permissions [Suite:openshift/conformance/parallel]" + +started: 2/233/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 2 Pods should communicate with external host without being SNATed [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (2.2s) 2025-09-02T07:33:23 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should prevent communication between pods in different namespaces on different nodes [Suite:openshift/conformance/parallel]" + +started: 2/234/476 "[sig-network][Feature:EgressFirewall] when using openshift ovn-kubernetes should ensure egressfirewall is created [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (2.3s) 2025-09-02T07:33:23 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising the default network [apigroup:user.openshift.io][apigroup:security.openshift.io] External host should be able to query route advertised pods by the pod IP [Suite:openshift/conformance/parallel]" + +started: 2/235/476 "[sig-auth][Feature:OAuthServer] ClientSecretWithPlus should create oauthclient [apigroup:oauth.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:33:24 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyLocalRoleEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/236/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over a VRF-Lite configuration Pods should be able to communicate on a secondary network [Timeout:30m] [Suite:openshift/conformance/parallel]" + +passed: (1m47s) 2025-09-02T07:33:24 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork is isolated from the default network with L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/237/476 "[sig-network] network isolation when using a plugin in a mode that does not isolate namespaces by default should allow communication between pods in different namespaces on the same node [Suite:openshift/conformance/parallel]" + +passed: (1.3s) 2025-09-02T07:33:24 "[sig-devex][Feature:Templates] template-api TestTemplate [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/238/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork isolates overlapping CIDRs with L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T07:33:24 "[Suite:openshift/machine-config-operator/disruptive][sig-mco][OCPFeatureGate:MachineConfigNodes] [Suite:openshift/conformance/parallel]Should properly block MCN updates by impersonation of the MCD SA [apigroup:machineconfiguration.openshift.io]" + +started: 2/239/476 "[sig-cluster-lifecycle][Feature:Machines] Managed cluster should have machine resources [apigroup:machine.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.4s) 2025-09-02T07:33:25 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For cluster user defined networks When the network topology is Layer 3 UDN pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv6 [Suite:openshift/conformance/parallel]" + +started: 2/240/476 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.tcp_syncookies [Suite:openshift/conformance/parallel/minimal]" + +passed: (1m17s) 2025-09-02T07:33:25 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork isolates overlapping CIDRs with L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/241/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if the route termination type is Passthrough [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:33:25 "[sig-auth][Feature:OpenShiftAuthorization] The default cluster RBAC policy should have correct RBAC rules [Suite:openshift/conformance/parallel]" + +started: 2/242/476 "[sig-apps][Feature:OpenShiftControllerManager] TestDeployScale [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:33:26 "[sig-cluster-lifecycle][Feature:Machines] Managed cluster should have machine resources [apigroup:machine.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/243/476 "[sig-cli] oc explain should contain spec+status for image.openshift.io [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.5s) 2025-09-02T07:33:26 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 2 Pods should communicate with external host without being SNATed [Suite:openshift/conformance/parallel]" + +started: 2/244/476 "[sig-installer][Feature:baremetal] Baremetal platform should have hostfirmwaresetting resources [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.6s) 2025-09-02T07:33:27 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over a VRF-Lite configuration Pods should be able to communicate on a secondary network [Timeout:30m] [Suite:openshift/conformance/parallel]" + +started: 2/245/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagCustom [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.7s) 2025-09-02T07:33:27 "[sig-auth][Feature:OAuthServer] ClientSecretWithPlus should create oauthclient [apigroup:oauth.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/246/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions can perform east/west traffic between nodes two pods connected over a L3 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (1m35s) 2025-09-02T07:33:27 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router converges when multiple routers are writing conflicting upgrade validation status [Suite:openshift/conformance/parallel]" + +started: 2/247/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +passed: (20.7s) 2025-09-02T07:33:28 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes UserDefinedNetwork CRD controller pod connected to UserDefinedNetwork cannot be deleted when being used [Suite:openshift/conformance/parallel]" + +started: 2/248/476 "[sig-arch] Managed cluster should ensure control plane operators do not make themselves unevictable [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:33:28 "[sig-apps][Feature:OpenShiftControllerManager] TestDeployScale [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/249/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning node validation should have correct cpuset and cpushare set in crio containers [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/baremetal/common.go:26]: No baremetal platform detected + +skipped: (1.5s) 2025-09-02T07:33:28 "[sig-installer][Feature:baremetal] Baremetal platform should have hostfirmwaresetting resources [Suite:openshift/conformance/parallel]" + +started: 2/250/476 "[sig-etcd][apigroup:config.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Ensure etcd health and quorum in HighlyAvailableArbiterMode should have all etcd pods running and quorum met [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:33:29 "[sig-arch] Managed cluster should ensure control plane operators do not make themselves unevictable [Suite:openshift/conformance/parallel]" + +started: 2/251/476 "[sig-cli] oc explain should contain spec+status for template.openshift.io [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (42s) 2025-09-02T07:33:29 "[sig-apps][Feature:OpenShiftControllerManager] TestTriggers_imageChange_nonAutomatic [apigroup:image.openshift.io][apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/252/476 "[sig-cli] oc adm user-creation [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:33:29 "[sig-cli] oc explain should contain spec+status for image.openshift.io [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/253/476 "[sig-auth][Feature:OAuthServer] [apigroup:oauth.openshift.io] OAuthClientWithRedirectURIs must validate request URIs according to oauth-client definition [Suite:openshift/conformance/parallel]" + +passed: (16.7s) 2025-09-02T07:33:30 "[sig-cli] oc explain should contain proper spec+status for CRDs [Suite:openshift/conformance/parallel]" + +started: 2/254/476 "[sig-cli] oc can get list of nodes [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/two_node/common.go:24]: Cluster is not in HighlyAvailableArbiter topology, skipping test + +skipped: (0s) 2025-09-02T07:33:30 "[sig-etcd][apigroup:config.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Ensure etcd health and quorum in HighlyAvailableArbiterMode should have all etcd pods running and quorum met [Suite:openshift/conformance/parallel]" + +started: 2/255/476 "[sig-auth][Feature:OpenShiftAuthorization] self-SAR compatibility TestSelfSubjectAccessReviewsNonExistingNamespace should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (19.5s) 2025-09-02T07:33:30 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions does not mirror EndpointSlices in namespaces not using user defined primary networks L2 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/256/476 "[sig-cli] templates different namespaces [apigroup:user.openshift.io][apigroup:project.openshift.io][apigroup:template.openshift.io][apigroup:authorization.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (4.4s) 2025-09-02T07:33:30 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if the route termination type is Passthrough [Suite:openshift/conformance/parallel]" + +started: 2/257/476 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure CRD of experimental group is not installed [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:33:32 "[sig-cli] oc explain should contain spec+status for template.openshift.io [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/258/476 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router converges when multiple routers are writing status [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:33:32 "[sig-cli] oc can get list of nodes [Suite:openshift/conformance/parallel]" + +started: 2/259/476 "[sig-network][Feature:Multus] should use multus to create net1 device from network-attachment-definition [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (4.4s) 2025-09-02T07:33:33 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagCustom [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/260/476 "[sig-cli] oc explain should contain proper fields description for security.internal.openshift.io [apigroup:security.internal.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.4s) 2025-09-02T07:33:33 "[sig-auth][Feature:OAuthServer] [apigroup:oauth.openshift.io] OAuthClientWithRedirectURIs must validate request URIs according to oauth-client definition [Suite:openshift/conformance/parallel]" + +started: 2/261/476 "[sig-network][Feature:Router][apigroup:route.openshift.io] when FIPS is enabled the HAProxy router should not work when configured with a 1024-bit RSA key [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:33:33Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:76c9ee49b6 namespace:e2e-image-volume-2584 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:image-volume-test]}" message="{BackOff Back-off pulling image \"nonexistent:latest\" map[count:2 firstTimestamp:2025-09-02T07:33:02Z lastTimestamp:2025-09-02T07:33:33Z reason:BackOff]}" +passed: (2.1s) 2025-09-02T07:33:33 "[sig-auth][Feature:OpenShiftAuthorization] self-SAR compatibility TestSelfSubjectAccessReviewsNonExistingNamespace should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/262/476 "[sig-apps][apigroup:apps.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Evaluate DaemonSet placement in HighlyAvailableArbiterMode topology should not create a DaemonSet on the Arbiter node [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:33:33 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure CRD of experimental group is not installed [Suite:openshift/conformance/parallel]" + +started: 2/263/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster platform workloads should be annotated correctly for Deployments [Suite:openshift/conformance/parallel]" + +passed: (3.6s) 2025-09-02T07:33:34 "[sig-cli] oc adm user-creation [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/264/476 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should prevent communication between pods in different namespaces on the same node [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:33:36 "[sig-cli] oc explain should contain proper fields description for security.internal.openshift.io [apigroup:security.internal.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/265/476 "[sig-network][endpoints] admission [apigroup:config.openshift.io] blocks manual creation of EndpointSlices pointing to the cluster or service network [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/two_node/common.go:24]: Cluster is not in HighlyAvailableArbiter topology, skipping test + +skipped: (1.4s) 2025-09-02T07:33:36 "[sig-apps][apigroup:apps.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Evaluate DaemonSet placement in HighlyAvailableArbiterMode topology should not create a DaemonSet on the Arbiter node [Suite:openshift/conformance/parallel]" + +started: 2/266/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint" + +time="2025-09-02T07:33:36Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e1098f96ec namespace:e2e-test-router-stress-5zxfp node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:router-hjxsg]}" message="{Unhealthy Readiness probe failed: Get \"http://10.129.3.165:1936/healthz/ready\": dial tcp 10.129.3.165:1936: connect: connection refused map[firstTimestamp:2025-09-02T07:33:36Z lastTimestamp:2025-09-02T07:33:36Z reason:Unhealthy]}" +skip [github.com/openshift/origin/test/extended/router/certs.go:165]: skipping on non-FIPS cluster + +skipped: (2.5s) 2025-09-02T07:33:37 "[sig-network][Feature:Router][apigroup:route.openshift.io] when FIPS is enabled the HAProxy router should not work when configured with a 1024-bit RSA key [Suite:openshift/conformance/parallel]" + +started: 2/267/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.5s) 2025-09-02T07:33:37 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should prevent communication between pods in different namespaces on the same node [Suite:openshift/conformance/parallel]" + +started: 2/268/476 "[sig-cli] oc api-resources can output expected information about api-resources [Suite:openshift/conformance/parallel]" + +passed: (11.3s) 2025-09-02T07:33:37 "[sig-network] network isolation when using a plugin in a mode that does not isolate namespaces by default should allow communication between pods in different namespaces on the same node [Suite:openshift/conformance/parallel]" + +started: 2/269/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for build.openshift.io/v1, Resource=buildconfigs [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:33:37 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-redhat-operators Catalog should serve FBC via the /v1/api/all endpoint" + +started: 2/270/476 "[sig-cli] oc explain should contain proper fields description for oauth.openshift.io [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:33:37Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:36b79e79a9 namespace:e2e-test-router-stress-5zxfp node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-2xrpj]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 500 map[firstTimestamp:2025-09-02T07:33:37Z lastTimestamp:2025-09-02T07:33:37Z reason:Unhealthy]}" +time="2025-09-02T07:33:38Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:9de967a995 namespace:e2e-test-router-stress-5zxfp node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:router-b5cdd]}" message="{Unhealthy Readiness probe failed: Get \"http://10.128.3.188:1936/healthz/ready\": dial tcp 10.128.3.188:1936: connect: connection refused map[firstTimestamp:2025-09-02T07:33:38Z lastTimestamp:2025-09-02T07:33:38Z reason:Unhealthy]}" +passed: (3.8s) 2025-09-02T07:33:38 "[sig-network][Feature:Multus] should use multus to create net1 device from network-attachment-definition [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 2/271/476 "[Conformance][sig-api-machinery][Feature:APIServer] kube-apiserver should be accessible via api-ext endpoint [Suite:openshift/conformance/parallel/minimal]" + +passed: (3.1s) 2025-09-02T07:33:38 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster platform workloads should be annotated correctly for Deployments [Suite:openshift/conformance/parallel]" + +started: 2/272/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +passed: (2.1s) 2025-09-02T07:33:40 "[sig-network][endpoints] admission [apigroup:config.openshift.io] blocks manual creation of EndpointSlices pointing to the cluster or service network [Suite:openshift/conformance/parallel]" + +started: 2/273/476 "[sig-operator] an end user can use OLM can subscribe to the operator [apigroup:config.openshift.io] [Skipped:Disconnected] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:33:40 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for build.openshift.io/v1, Resource=buildconfigs [apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/274/476 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyLocalRoleBindingEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (19.2s) 2025-09-02T07:33:40 "[sig-network][Feature:tuning] pod sysctl should not affect existing pods [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 2/275/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +passed: (2.1s) 2025-09-02T07:33:41 "[sig-cli] oc api-resources can output expected information about api-resources [Suite:openshift/conformance/parallel]" + +started: 2/276/476 "[sig-devex][Feature:Templates] templateinstance object kinds test should create and delete objects from varying API groups [apigroup:template.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (20.8s) 2025-09-02T07:33:41 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router reports the expected host names in admitted routes' statuses [Suite:openshift/conformance/parallel]" + +started: 2/277/476 "[sig-network][Feature:Whereabouts] should assign unique IP addresses to each pod in the event of a race condition case [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (2.5s) 2025-09-02T07:33:42 "[sig-cli] oc explain should contain proper fields description for oauth.openshift.io [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/278/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +passed: (23.2s) 2025-09-02T07:33:43 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is deleted then routes are not reachable [Suite:openshift/conformance/parallel]" + +started: 2/279/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:33:43 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyLocalRoleBindingEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/280/476 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestScopedTokens should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:oauth.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.9s) 2025-09-02T07:33:46 "[sig-devex][Feature:Templates] templateinstance object kinds test should create and delete objects from varying API groups [apigroup:template.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/281/476 "[sig-devex][Feature:Templates] template-api TestTemplateTransformationFromConfig [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.1s) 2025-09-02T07:33:47 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestScopedTokens should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:oauth.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/282/476 "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]" + +passed: (0s) 2025-09-02T07:33:48 "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-openshift-apiserver-operator/conformance/parallel]" + +started: 2/283/476 "[sig-network-edge] DNS should answer A and AAAA queries for a dual-stack service [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (19.3s) 2025-09-02T07:33:48 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions can perform east/west traffic between nodes two pods connected over a L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/284/476 "[sig-arch] ClusterOperators [apigroup:config.openshift.io] should define at least one related object that is not a namespace [Suite:openshift/conformance/parallel]" + +passed: (1.3s) 2025-09-02T07:33:48 "[sig-devex][Feature:Templates] template-api TestTemplateTransformationFromConfig [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/285/476 "[sig-arch] Managed cluster should set requests but not limits [Suite:openshift/conformance/parallel]" + +passed: (10.5s) 2025-09-02T07:33:50 "[Conformance][sig-api-machinery][Feature:APIServer] kube-apiserver should be accessible via api-ext endpoint [Suite:openshift/conformance/parallel/minimal]" + +started: 2/286/476 "[sig-network-edge][Feature:Idling] Unidling [apigroup:apps.openshift.io][apigroup:route.openshift.io] should work with TCP (when fully idled) [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:33:51 "[sig-arch] ClusterOperators [apigroup:config.openshift.io] should define at least one related object that is not a namespace [Suite:openshift/conformance/parallel]" + +started: 2/287/476 "[sig-devex][Feature:Templates] templateinstance readiness test should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/dns/dns.go:529]: skipping test on non dual-stack enabled platform + +skipped: (2s) 2025-09-02T07:33:51 "[sig-network-edge] DNS should answer A and AAAA queries for a dual-stack service [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/288/476 "[sig-devex] check registry.redhat.io is available and samples operator can import sample imagestreams run sample related validations [apigroup:config.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (26.9s) 2025-09-02T07:33:51 "[sig-network][Feature:EgressFirewall] when using openshift ovn-kubernetes should ensure egressfirewall is created [Suite:openshift/conformance/parallel]" + +started: 2/289/476 "[sig-auth][Feature:UserAPI] users can manipulate groups [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.4s) 2025-09-02T07:33:52 "[sig-arch] Managed cluster should set requests but not limits [Suite:openshift/conformance/parallel]" + +started: 2/290/476 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"localhost-recovery.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +passed: (1m23s) 2025-09-02T07:33:53 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions isolates overlapping CIDRs with L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/291/476 "[sig-api-machinery][Feature:ClusterResourceQuota] Cluster resource quota should control resource limits across namespaces [apigroup:quota.openshift.io][apigroup:image.openshift.io][apigroup:monitoring.coreos.com][apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.8s) 2025-09-02T07:33:56 "[sig-auth][Feature:UserAPI] users can manipulate groups [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/292/476 "[sig-installer][Feature:baremetal] Baremetal platform should have preprovisioning images for workers [Suite:openshift/conformance/parallel]" + +passed: (29s) 2025-09-02T07:33:58 "[sig-node][apigroup:config.openshift.io] CPU Partitioning node validation should have correct cpuset and cpushare set in crio containers [Suite:openshift/conformance/parallel]" + +started: 2/293/476 "[sig-imageregistry][Feature:ImageLookup] Image policy should perform lookup when the Deployment gets the resolve-names annotation later [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/baremetal/common.go:26]: No baremetal platform detected + +skipped: (1.2s) 2025-09-02T07:33:59 "[sig-installer][Feature:baremetal] Baremetal platform should have preprovisioning images for workers [Suite:openshift/conformance/parallel]" + +started: 2/294/476 "[sig-network] services basic functionality should allow connections to another pod on a different node via a service IP [Suite:openshift/conformance/parallel]" + +passed: (1m10s) 2025-09-02T07:33:59 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router converges when multiple routers are writing conflicting status [Suite:openshift/conformance/parallel]" + +started: 2/295/476 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"localhost.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +passed: (32.9s) 2025-09-02T07:33:59 "[sig-arch] [Conformance] sysctl whitelists net.ipv4.tcp_syncookies [Suite:openshift/conformance/parallel/minimal]" + +started: 2/296/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork does not mirror EndpointSlices in namespaces not using user defined primary networks L2 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +passed: (8.3s) 2025-09-02T07:34:01 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"localhost-recovery.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +started: 2/297/476 "[sig-network] load balancer should be managed by OpenShift [Suite:openshift/conformance/parallel]" + +passed: (29.2s) 2025-09-02T07:34:02 "[sig-network][Feature:Router][apigroup:route.openshift.io] The HAProxy router converges when multiple routers are writing status [Suite:openshift/conformance/parallel]" + +started: 2/298/476 "[sig-cli] oc explain should contain spec+status for podsecuritypolicysubjectreviews of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (21s) 2025-09-02T07:34:03 "[sig-network][Feature:Whereabouts] should assign unique IP addresses to each pod in the event of a race condition case [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +started: 2/299/476 "[sig-cli] oc builds get buildconfig [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1.1s) 2025-09-02T07:34:03 "[sig-network] load balancer should be managed by OpenShift [Suite:openshift/conformance/parallel]" + +started: 2/300/476 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure custom gatewayclass can be accepted [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:34:05 "[sig-cli] oc explain should contain spec+status for podsecuritypolicysubjectreviews of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/301/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use same external certificate then also the route is reachable [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:05Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:76c9ee49b6 namespace:e2e-image-volume-2584 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:image-volume-test]}" message="{BackOff Back-off pulling image \"nonexistent:latest\" map[count:3 firstTimestamp:2025-09-02T07:33:02Z lastTimestamp:2025-09-02T07:34:05Z reason:BackOff]}" +passed: (1m44s) 2025-09-02T07:34:06 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions is isolated from the default network with L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/302/476 "[sig-api-machinery][Feature:ResourceQuota] Object count should properly count the number of imagestreams resources [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (6.8s) 2025-09-02T07:34:06 "[sig-imageregistry][Feature:ImageLookup] Image policy should perform lookup when the Deployment gets the resolve-names annotation later [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/303/476 "[sig-cli] templates process [apigroup:template.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (15.6s) 2025-09-02T07:34:07 "[sig-network-edge][Feature:Idling] Unidling [apigroup:apps.openshift.io][apigroup:route.openshift.io] should work with TCP (when fully idled) [Suite:openshift/conformance/parallel]" + +started: 2/304/476 "[sig-devex][Feature:Templates] templateinstance impersonation tests [apigroup:user.openshift.io][apigroup:authorization.openshift.io] should pass impersonation creation tests [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3s) 2025-09-02T07:34:08 "[sig-cli] oc builds get buildconfig [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/305/476 "[sig-installer][Feature:baremetal] Baremetal platform should not allow updating BootMacAddress [Suite:openshift/conformance/parallel]" + +passed: (26.8s) 2025-09-02T07:34:08 "[sig-operator] an end user can use OLM can subscribe to the operator [apigroup:config.openshift.io] [Skipped:Disconnected] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/306/476 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should prevent connections to pods in different namespaces on different nodes via service IPs [Suite:openshift/conformance/parallel]" + +passed: (8.2s) 2025-09-02T07:34:08 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"localhost.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +started: 2/307/476 "[sig-cli] oc adm groups [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.1s) 2025-09-02T07:34:10 "[sig-api-machinery][Feature:ResourceQuota] Object count should properly count the number of imagestreams resources [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/308/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should fail to install a non-existing cluster extension" + + I0902 07:34:10.831277 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +skip [github.com/openshift/origin/test/extended/baremetal/common.go:26]: No baremetal platform detected + +skipped: (1.7s) 2025-09-02T07:34:11 "[sig-installer][Feature:baremetal] Baremetal platform should not allow updating BootMacAddress [Suite:openshift/conformance/parallel]" + +started: 2/309/476 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from non-default to default namespace on a different node [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (2s) 2025-09-02T07:34:11 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should prevent connections to pods in different namespaces on different nodes via service IPs [Suite:openshift/conformance/parallel]" + +started: 2/310/476 "[sig-cluster-lifecycle] CSRs from machines that are not recognized by the cloud provider are not approved [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:34:12 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should fail to install a non-existing cluster extension" + +started: 2/311/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when subject is permitted by RBR should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (43.5s) 2025-09-02T07:34:12 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +started: 2/312/476 "[sig-cli] oc basics can get version information from API [Suite:openshift/conformance/parallel]" + +passed: (7.7s) 2025-09-02T07:34:14 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use same external certificate then also the route is reachable [Suite:openshift/conformance/parallel]" + +started: 2/313/476 "[sig-cli] oc explain should contain spec+status for podsecuritypolicyreviews of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.9s) 2025-09-02T07:34:14 "[sig-network] network isolation when using a plugin in a mode that isolates namespaces by default should allow communication from non-default to default namespace on a different node [Suite:openshift/conformance/parallel]" + +started: 2/314/476 "[sig-cli] oc project --show-labels works for projects [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (31.7s) 2025-09-02T07:34:14 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +started: 2/315/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 3 External host should be able to query route advertised pods by the pod IP [Suite:openshift/conformance/parallel]" + +passed: (5.5s) 2025-09-02T07:34:15 "[sig-cli] oc adm groups [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/316/476 "[Conformance][sig-api-machinery][Feature:APIServer] kube-apiserver should be accessible via api-int endpoint [Suite:openshift/conformance/parallel/minimal]" + +passed: (1.9s) 2025-09-02T07:34:16 "[sig-cli] oc basics can get version information from API [Suite:openshift/conformance/parallel]" + +started: 2/317/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate then also the route is reachable [Suite:openshift/conformance/parallel]" + +passed: (2.2s) 2025-09-02T07:34:16 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when subject is permitted by RBR should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/318/476 "[sig-arch] ocp payload should be based on existing source OLM version should contain the source commit id [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (1m3s) 2025-09-02T07:34:16 "[sig-auth][Feature:LDAP] LDAP IDP should authenticate against an ldap server [apigroup:user.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/319/476 "[sig-api-machinery] API health endpoints should contain the required checks for the openshift-apiserver APIs [Suite:openshift/conformance/parallel]" + +passed: (32.5s) 2025-09-02T07:34:16 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +started: 2/320/476 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure HTTPRoute object is created [Suite:openshift/conformance/parallel]" + +passed: (22.7s) 2025-09-02T07:34:17 "[sig-api-machinery][Feature:ClusterResourceQuota] Cluster resource quota should control resource limits across namespaces [apigroup:quota.openshift.io][apigroup:image.openshift.io][apigroup:monitoring.coreos.com][apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/321/476 "[sig-auth][Feature:ProjectAPI] TestUnprivilegedNewProject [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.8s) 2025-09-02T07:34:17 "[sig-cli] oc explain should contain spec+status for podsecuritypolicyreviews of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/322/476 "[sig-cli][OCPFeatureGate:UpgradeStatus] oc adm upgrade status reports correctly when the cluster is not updating [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:17Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:76c9ee49b6 namespace:e2e-image-volume-2584 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:image-volume-test]}" message="{BackOff Back-off pulling image \"nonexistent:latest\" map[count:4 firstTimestamp:2025-09-02T07:33:02Z lastTimestamp:2025-09-02T07:34:17Z reason:BackOff]}" +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (1.8s) 2025-09-02T07:34:17 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [PodNetwork] Advertising a cluster user defined network [apigroup:user.openshift.io][apigroup:security.openshift.io] Over the default VRF When the network topology is Layer 3 External host should be able to query route advertised pods by the pod IP [Suite:openshift/conformance/parallel]" + +started: 2/323/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagCustomWithConfigChange [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.9s) 2025-09-02T07:34:17 "[sig-cli] oc project --show-labels works for projects [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/324/476 "[sig-auth][Feature:PodSecurity][Feature:SCC] SCC admission fails for incorrect/non-existent required-scc annotation [Suite:openshift/conformance/parallel]" + +passed: (17.7s) 2025-09-02T07:34:18 "[sig-network] services basic functionality should allow connections to another pod on a different node via a service IP [Suite:openshift/conformance/parallel]" + +started: 2/325/476 "[sig-operator] OLM should be installed with operatorgroups at version v1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (10.4s) 2025-09-02T07:34:18 "[sig-devex][Feature:Templates] templateinstance impersonation tests [apigroup:user.openshift.io][apigroup:authorization.openshift.io] should pass impersonation creation tests [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/326/476 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections to services in the default namespace from a pod in another namespace on a different node [Suite:openshift/conformance/parallel]" + +passed: (700ms) 2025-09-02T07:34:18 "[sig-api-machinery] API health endpoints should contain the required checks for the openshift-apiserver APIs [Suite:openshift/conformance/parallel]" + +started: 2/327/476 "[sig-network][Feature:tuning] sysctl allowlist update should start a pod with custom sysctl only when the sysctl is added to whitelist [Suite:openshift/conformance/parallel]" + +passed: (800ms) 2025-09-02T07:34:19 "[sig-cli][OCPFeatureGate:UpgradeStatus] oc adm upgrade status reports correctly when the cluster is not updating [Suite:openshift/conformance/parallel]" + +started: 2/328/476 "[sig-auth][Feature:Authentication] TestFrontProxy should succeed [Suite:openshift/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:34:19 "[sig-arch] ocp payload should be based on existing source OLM version should contain the source commit id [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/329/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for template.openshift.io/v1, Resource=brokertemplateinstances [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:34:20 "[sig-operator] OLM should be installed with operatorgroups at version v1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/330/476 "[sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.8s) 2025-09-02T07:34:20 "[sig-auth][Feature:ProjectAPI] TestUnprivilegedNewProject [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/331/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthauthorizetokens [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.3s) 2025-09-02T07:34:20 "[sig-auth][Feature:PodSecurity][Feature:SCC] SCC admission fails for incorrect/non-existent required-scc annotation [Suite:openshift/conformance/parallel]" + +started: 2/332/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should handle multiple image volumes [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.6s) 2025-09-02T07:34:21 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should allow connections to services in the default namespace from a pod in another namespace on a different node [Suite:openshift/conformance/parallel]" + +started: 2/333/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller should create NAD in new created namespaces that apply to namespace-selector [Suite:openshift/conformance/parallel]" + +passed: (5.3s) 2025-09-02T07:34:21 "[Conformance][sig-api-machinery][Feature:APIServer] kube-apiserver should be accessible via api-int endpoint [Suite:openshift/conformance/parallel/minimal]" + +started: 2/334/476 "[sig-operator] OLM should be installed with installplans at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (1.3s) 2025-09-02T07:34:22 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for template.openshift.io/v1, Resource=brokertemplateinstances [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/335/476 "[sig-cli] oc secret creates and retrieves expected [Suite:openshift/conformance/parallel]" + +passed: (1.4s) 2025-09-02T07:34:22 "[sig-auth][Feature:Authentication] TestFrontProxy should succeed [Suite:openshift/conformance/parallel]" + +started: 2/336/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for user.openshift.io/v1, Resource=users [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:22Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:01cac95d8b namespace:e2e-test-tuning-bhvgz node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:testpod]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_testpod_e2e-test-tuning-bhvgz_d97f7c1a-9b38-4593-9592-a005c0df202a_0(ee53e96068877effcbd012057762ac41eb576db78cca407f7259489764e916ec): error adding pod e2e-test-tuning-bhvgz_testpod to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"ee53e96068877effcbd012057762ac41eb576db78cca407f7259489764e916ec\" Netns:\"/var/run/netns/ac0aabd0-0c93-44a1-97d1-1bedbc33a126\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-tuning-bhvgz;K8S_POD_NAME=testpod;K8S_POD_INFRA_CONTAINER_ID=ee53e96068877effcbd012057762ac41eb576db78cca407f7259489764e916ec;K8S_POD_UID=d97f7c1a-9b38-4593-9592-a005c0df202a\" Path:\"\" ERRORED: error configuring pod [e2e-test-tuning-bhvgz/testpod] networking: [e2e-test-tuning-bhvgz/testpod/d97f7c1a-9b38-4593-9592-a005c0df202a:tuningnad]: error adding container to network \"tuningnad\": plugin type=\"tuning\" failed (add): Sysctl net.ipv4.conf.IFNAME.accept_local is not allowed. Only the following sysctls are allowed: [^net.ipv4.conf.IFNAME.accept_redirects$ ^net.ipv4.conf.IFNAME.accept_source_route$ ^net.ipv4.conf.IFNAME.arp_accept$ ^net.ipv4.conf.IFNAME.arp_notify$ ^net.ipv4.conf.IFNAME.disable_policy$ ^net.ipv4.conf.IFNAME.secure_redirects$ ^net.ipv4.conf.IFNAME.send_redirects$ ^net.ipv6.conf.IFNAME.accept_ra$ ^net.ipv6.conf.IFNAME.accept_redirects$ ^net.ipv6.conf.IFNAME.accept_source_route$ ^net.ipv6.conf.IFNAME.arp_accept$ ^net.ipv6.conf.IFNAME.arp_notify$ ^net.ipv6.neigh.IFNAME.base_reachable_time_ms$ ^net.ipv6.neigh.IFNAME.retrans_time_ms$]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:34:22Z lastTimestamp:2025-09-02T07:34:22Z reason:FailedCreatePodSandBox]}" +passed: (3.7s) 2025-09-02T07:34:23 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagCustomWithConfigChange [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/337/476 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestUnknownScopes should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:34:23 "[sig-operator] OLM should be installed with installplans at version v1alpha1 [apigroup:operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/338/476 "[sig-network] network isolation when using a plugin in a mode that does not isolate namespaces by default should allow communication between pods in different namespaces on different nodes [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:34:23 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthauthorizetokens [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/339/476 "[sig-arch] Managed cluster should only include cluster daemonsets that have maxUnavailable or maxSurge update of 10 percent or maxUnavailable of 33 percent [Suite:openshift/conformance/parallel]" + +passed: (44.9s) 2025-09-02T07:34:23 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +started: 2/340/476 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure existing CRDs can not be deleted [Suite:openshift/conformance/parallel]" + +passed: (44.9s) 2025-09-02T07:34:24 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +started: 2/341/476 "[sig-cli] oc statefulset creates and deletes statefulsets [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:34:25 "[sig-arch] Managed cluster should only include cluster daemonsets that have maxUnavailable or maxSurge update of 10 percent or maxUnavailable of 33 percent [Suite:openshift/conformance/parallel]" + +started: 2/342/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for user.openshift.io/v1, Resource=identities [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:34:25 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for user.openshift.io/v1, Resource=users [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/343/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork can perform east/west traffic between nodes for two pods connected over a L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (43.4s) 2025-09-02T07:34:25 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L2 primary UDN, cluster-networked pods [Suite:openshift/conformance/parallel]" + +started: 2/344/476 "[sig-cli] oc label pod [Suite:openshift/conformance/parallel]" + +passed: (2.4s) 2025-09-02T07:34:26 "[sig-cli] oc secret creates and retrieves expected [Suite:openshift/conformance/parallel]" + +started: 2/345/476 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure existing CRDs can not be updated [Suite:openshift/conformance/parallel]" + +passed: (26.6s) 2025-09-02T07:34:27 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using UserDefinedNetwork does not mirror EndpointSlices in namespaces not using user defined primary networks L2 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/346/476 "[sig-arch] [Conformance] sysctl pod should not start for sysctl not on whitelist kernel.msgmax [Suite:openshift/conformance/parallel/minimal]" + +passed: (1.6s) 2025-09-02T07:34:27 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure existing CRDs can not be deleted [Suite:openshift/conformance/parallel]" + +started: 2/347/476 "[sig-network][Feature:EgressFirewall] egressFirewall should have no impact outside its namespace [Suite:openshift/conformance/parallel]" + +passed: (3.1s) 2025-09-02T07:34:27 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestUnknownScopes should succeed [apigroup:user.openshift.io][apigroup:authorization.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/348/476 "[sig-apps][apigroup:apps.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Deployments on HighlyAvailableArbiterMode topology should be created on arbiter nodes when arbiter node is selected [Suite:openshift/conformance/parallel]" + +passed: (11s) 2025-09-02T07:34:28 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate then also the route is reachable [Suite:openshift/conformance/parallel]" + +started: 2/349/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster infrastructure should be configured correctly [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:34:28 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for user.openshift.io/v1, Resource=identities [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/350/476 "[sig-devex][Feature:Templates] templateinstance cross-namespace test should create and delete objects across namespaces [apigroup:user.openshift.io][apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (6.6s) 2025-09-02T07:34:28 "[sig-node] [FeatureGate:ImageVolume] ImageVolume should handle multiple image volumes [Suite:openshift/conformance/parallel]" + +started: 2/351/476 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestTokensWithIllegalScopes should succeed [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (7.3s) 2025-09-02T07:34:28 "[sig-imageregistry][Feature:ImageLookup] Image policy should update OpenShift object image fields when local names are on [apigroup:image.openshift.io][apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/352/476 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure LB, service, and dnsRecord are created for a Gateway object [Suite:openshift/conformance/parallel]" + +passed: (3.1s) 2025-09-02T07:34:30 "[sig-cli] oc label pod [Suite:openshift/conformance/parallel]" + +started: 2/353/476 "[sig-network-edge][Feature:Idling] Idling with a single service and ReplicationController should idle the service and ReplicationController properly [Suite:openshift/conformance/parallel]" + +passed: (7.6s) 2025-09-02T07:34:30 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller should create NAD in new created namespaces that apply to namespace-selector [Suite:openshift/conformance/parallel]" + +started: 2/354/476 "[sig-api-machinery][Feature:APIServer] anonymous browsers should get a 403 from / [Suite:openshift/conformance/parallel]" + +passed: (400ms) 2025-09-02T07:34:31 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster infrastructure should be configured correctly [Suite:openshift/conformance/parallel]" + +started: 2/355/476 "[sig-network] Internal connectivity for TCP and UDP on ports 9000-9999 is allowed [Serial:Self] [Suite:openshift/conformance/parallel]" + +passed: (3.8s) 2025-09-02T07:34:31 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure existing CRDs can not be updated [Suite:openshift/conformance/parallel]" + +started: 2/356/476 "[sig-cli] oc basics can output expected --dry-run text [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/two_node/common.go:24]: Cluster is not in HighlyAvailableArbiter topology, skipping test + +skipped: (1.7s) 2025-09-02T07:34:31 "[sig-apps][apigroup:apps.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] Deployments on HighlyAvailableArbiterMode topology should be created on arbiter nodes when arbiter node is selected [Suite:openshift/conformance/parallel]" + +started: 2/357/476 "[sig-devex][Feature:Templates] templateinstance creation with invalid object reports error should report a failure on creation [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (5.5s) 2025-09-02T07:34:31 "[sig-cli] oc statefulset creates and deletes statefulsets [Suite:openshift/conformance/parallel]" + +started: 2/358/476 "[sig-cli] oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:34:32 "[sig-api-machinery][Feature:APIServer] anonymous browsers should get a 403 from / [Suite:openshift/conformance/parallel]" + +started: 2/359/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is deleted and re-created again then routes are reachable [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:33Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:94dbb185e5 namespace:e2e-test-tuning-bhvgz node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:testpod]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_testpod_e2e-test-tuning-bhvgz_d97f7c1a-9b38-4593-9592-a005c0df202a_0(93168bcf079342cf5853c1cd5a9befdf127daee6f383b31b84b57b2740d8a014): error adding pod e2e-test-tuning-bhvgz_testpod to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"93168bcf079342cf5853c1cd5a9befdf127daee6f383b31b84b57b2740d8a014\" Netns:\"/var/run/netns/b070f1d6-a259-425a-b9fa-4b8c0b068811\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-tuning-bhvgz;K8S_POD_NAME=testpod;K8S_POD_INFRA_CONTAINER_ID=93168bcf079342cf5853c1cd5a9befdf127daee6f383b31b84b57b2740d8a014;K8S_POD_UID=d97f7c1a-9b38-4593-9592-a005c0df202a\" Path:\"\" ERRORED: error configuring pod [e2e-test-tuning-bhvgz/testpod] networking: [e2e-test-tuning-bhvgz/testpod/d97f7c1a-9b38-4593-9592-a005c0df202a:tuningnad]: error adding container to network \"tuningnad\": plugin type=\"tuning\" failed (add): Sysctl net.ipv4.conf.IFNAME.accept_local is not allowed. Only the following sysctls are allowed: [^net.ipv4.conf.IFNAME.accept_redirects$ ^net.ipv4.conf.IFNAME.accept_source_route$ ^net.ipv4.conf.IFNAME.arp_accept$ ^net.ipv4.conf.IFNAME.arp_notify$ ^net.ipv4.conf.IFNAME.disable_policy$ ^net.ipv4.conf.IFNAME.secure_redirects$ ^net.ipv4.conf.IFNAME.send_redirects$ ^net.ipv6.conf.IFNAME.accept_ra$ ^net.ipv6.conf.IFNAME.accept_redirects$ ^net.ipv6.conf.IFNAME.accept_source_route$ ^net.ipv6.conf.IFNAME.arp_accept$ ^net.ipv6.conf.IFNAME.arp_notify$ ^net.ipv6.neigh.IFNAME.base_reachable_time_ms$ ^net.ipv6.neigh.IFNAME.retrans_time_ms$]\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:34:33Z lastTimestamp:2025-09-02T07:34:33Z reason:FailedCreatePodSandBox]}" +passed: (3s) 2025-09-02T07:34:34 "[sig-auth][Feature:OpenShiftAuthorization] scopes TestTokensWithIllegalScopes should succeed [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/360/476 "[sig-windows] Nodes should fail with invalid version annotation [Suite:openshift/conformance/parallel]" + +passed: (2m54s) 2025-09-02T07:34:34 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork isolates overlapping CIDRs with L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/361/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from guest podNetwork pod via NodePort across different guest nodes [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:35Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:34:35Z reason:BackOff]}" +passed: (11s) 2025-09-02T07:34:35 "[sig-network] network isolation when using a plugin in a mode that does not isolate namespaces by default should allow communication between pods in different namespaces on different nodes [Suite:openshift/conformance/parallel]" + +started: 2/362/476 "[sig-node] should override timeoutGracePeriodSeconds when annotation is set [Suite:openshift/conformance/parallel]" + +passed: (7s) 2025-09-02T07:34:36 "[sig-arch] [Conformance] sysctl pod should not start for sysctl not on whitelist kernel.msgmax [Suite:openshift/conformance/parallel/minimal]" + +started: 2/363/476 "[sig-imageregistry][Feature:Image] oc tag should work when only imagestreams api is available [apigroup:image.openshift.io][apigroup:authorization.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (3s) 2025-09-02T07:34:36 "[sig-cli] oc basics can output expected --dry-run text [Suite:openshift/conformance/parallel]" + +started: 2/364/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 New Catalog Install should fail to install if it has an invalid reference" + +time="2025-09-02T07:34:36Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:2 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:34:36Z reason:BackOff]}" +passed: (4.1s) 2025-09-02T07:34:37 "[sig-devex][Feature:Templates] templateinstance creation with invalid object reports error should report a failure on creation [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/365/476 "[sig-network] load balancer should not be managed by OpenShift [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/windows/nodes.go:38]: Skip. No Windows node found on the test cluster. + +skipped: (100ms) 2025-09-02T07:34:37 "[sig-windows] Nodes should fail with invalid version annotation [Suite:openshift/conformance/parallel]" + +started: 2/366/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L3 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (7.1s) 2025-09-02T07:34:38 "[sig-devex][Feature:Templates] templateinstance cross-namespace test should create and delete objects across namespaces [apigroup:user.openshift.io][apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/367/476 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyClusterRoleBindingEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (4.1s) 2025-09-02T07:34:38 "[sig-cli] oc explain should contain spec+status for apps.openshift.io [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/368/476 "[sig-cli] oc basics can describe an OAuth access token [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1m44s) 2025-09-02T07:34:39 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions is isolated from the default network with L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/369/476 "[sig-auth][Feature:PodSecurity][Feature:SCC] required-scc annotation is being applied to workloads [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (2.9s) 2025-09-02T07:34:40 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow connections to pods from guest podNetwork pod via NodePort across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 2/370/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster workloads with limits should have resources modified if CPUPartitioningMode = AllNodes [Suite:openshift/conformance/parallel]" + +passed: (3.3s) 2025-09-02T07:34:40 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 New Catalog Install should fail to install if it has an invalid reference" + +started: 2/371/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller when namespace-selector is mutated should delete managed NAD in namespaces that no longer apply to namespace-selector [Suite:openshift/conformance/parallel]" + +passed: (2.4s) 2025-09-02T07:34:41 "[sig-network] load balancer should not be managed by OpenShift [Suite:openshift/conformance/parallel]" + +started: 2/372/476 "[sig-cli] oc adm node-logs [Suite:openshift/conformance/parallel]" + +passed: (33.7s) 2025-09-02T07:34:41 "[sig-cli] templates process [apigroup:template.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/373/476 "[sig-devex][Feature:Templates] templateinstance impersonation tests [apigroup:user.openshift.io][apigroup:authorization.openshift.io] should pass impersonation update tests [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (12.4s) 2025-09-02T07:34:41 "[sig-network][Feature:EgressFirewall] egressFirewall should have no impact outside its namespace [Suite:openshift/conformance/parallel]" + +started: 2/374/476 "[sig-auth][Feature:HTPasswdAuth] HTPasswd IDP should successfully configure htpasswd and be responsive [apigroup:user.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:41Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:1d27d331fc namespace:e2e-liveness-probe-override-9857 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:pod-liveness-override-6855351b-751a-46d0-8fc6-aac6b1b2987b]}" message="{BackOff Back-off restarting failed container agnhost-container in pod pod-liveness-override-6855351b-751a-46d0-8fc6-aac6b1b2987b_e2e-liveness-probe-override-9857(d296fc7c-d488-4586-8aec-96c7e458a088) map[firstTimestamp:2025-09-02T07:34:41Z lastTimestamp:2025-09-02T07:34:41Z reason:BackOff]}" +passed: (14.9s) 2025-09-02T07:34:41 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork can perform east/west traffic between nodes for two pods connected over a L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/375/476 "[sig-network][Feature:Router][apigroup:route.openshift.io] when FIPS is disabled the HAProxy router should serve routes when configured with a 1024-bit RSA key [Feature:Networking-IPv4] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:42Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:1d27d331fc namespace:e2e-liveness-probe-override-9857 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:pod-liveness-override-6855351b-751a-46d0-8fc6-aac6b1b2987b]}" message="{BackOff Back-off restarting failed container agnhost-container in pod pod-liveness-override-6855351b-751a-46d0-8fc6-aac6b1b2987b_e2e-liveness-probe-override-9857(d296fc7c-d488-4586-8aec-96c7e458a088) map[count:2 firstTimestamp:2025-09-02T07:34:41Z lastTimestamp:2025-09-02T07:34:42Z reason:BackOff]}" +passed: (2.9s) 2025-09-02T07:34:42 "[sig-cli] oc basics can describe an OAuth access token [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/376/476 "[sig-node][apigroup:config.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] expected Master and Arbiter node counts Should validate that there are Master and Arbiter nodes as specified in the cluster [Suite:openshift/conformance/parallel]" + +passed: (3s) 2025-09-02T07:34:42 "[sig-auth][Feature:OpenShiftAuthorization] RBAC proxy for openshift authz RunLegacyClusterRoleBindingEndpoint should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/377/476 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure CRD of experimental group can not be created [Suite:openshift/conformance/parallel]" + +passed: (5s) 2025-09-02T07:34:43 "[sig-node] should override timeoutGracePeriodSeconds when annotation is set [Suite:openshift/conformance/parallel]" + +started: 2/378/476 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"check-endpoints.kubeconfig\" should be present in all kube-apiserver containers [Suite:openshift/conformance/parallel/minimal]" + +passed: (5.8s) 2025-09-02T07:34:44 "[sig-imageregistry][Feature:Image] oc tag should work when only imagestreams api is available [apigroup:image.openshift.io][apigroup:authorization.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/379/476 "[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (2.7s) 2025-09-02T07:34:44 "[sig-auth][Feature:PodSecurity][Feature:SCC] required-scc annotation is being applied to workloads [Suite:openshift/conformance/parallel]" + +started: 2/380/476 "[sig-cli] oc expose can ensure the expose command is functioning as expected [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/two_node/common.go:24]: Cluster is not in HighlyAvailableArbiter topology, skipping test + +skipped: (100ms) 2025-09-02T07:34:45 "[sig-node][apigroup:config.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] expected Master and Arbiter node counts Should validate that there are Master and Arbiter nodes as specified in the cluster [Suite:openshift/conformance/parallel]" + +started: 2/381/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate, but RBAC permissions are not added route update is rejected [Suite:openshift/conformance/parallel]" + +passed: (32.3s) 2025-09-02T07:34:45 "[sig-cluster-lifecycle] CSRs from machines that are not recognized by the cloud provider are not approved [Suite:openshift/conformance/parallel]" + +started: 2/382/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the login URL for the allow all IDP [Suite:openshift/conformance/parallel]" + +passed: (26.8s) 2025-09-02T07:34:47 "[sig-network][Feature:tuning] sysctl allowlist update should start a pod with custom sysctl only when the sysctl is added to whitelist [Suite:openshift/conformance/parallel]" + +started: 2/383/476 "[sig-cli] oc service creates and deletes services [Suite:openshift/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:34:47 "[sig-network][OCPFeatureGate:GatewayAPI][Feature:Router][apigroup:gateway.networking.k8s.io] Verify Gateway API CRDs and ensure CRD of experimental group can not be created [Suite:openshift/conformance/parallel]" + +started: 2/384/476 "[sig-auth][Feature:SecurityContextConstraints] TestPodUpdateSCCEnforcement [apigroup:user.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (5.5s) 2025-09-02T07:34:49 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller when namespace-selector is mutated should delete managed NAD in namespaces that no longer apply to namespace-selector [Suite:openshift/conformance/parallel]" + +started: 2/385/476 "[sig-coreos] [Conformance] CoreOS bootimages TestBootimagesPresent [apigroup:machineconfiguration.openshift.io] [Suite:openshift/conformance/parallel/minimal]" + +passed: (6.6s) 2025-09-02T07:34:49 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster workloads with limits should have resources modified if CPUPartitioningMode = AllNodes [Suite:openshift/conformance/parallel]" + +started: 2/386/476 "[sig-cli] oc set image can set images for pods and deployments [apigroup:image.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (5.7s) 2025-09-02T07:34:49 "[sig-cli] oc adm node-logs [Suite:openshift/conformance/parallel]" + +started: 2/387/476 "[sig-cli] oc adm build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:34:51 "[sig-coreos] [Conformance] CoreOS bootimages TestBootimagesPresent [apigroup:machineconfiguration.openshift.io] [Suite:openshift/conformance/parallel/minimal]" + +started: 2/388/476 "[sig-network] multicast when using one of the OpenshiftSDN modes 'redhat/openshift-ovs-multitenant, redhat/openshift-ovs-networkpolicy' should allow multicast traffic in namespaces where it is enabled [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:52Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:3 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:34:52Z reason:BackOff]}" +passed: (7.1s) 2025-09-02T07:34:52 "[sig-cli] oc builds complex build start-build [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/389/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should install a cluster extension" + +passed: (7.4s) 2025-09-02T07:34:53 "[sig-cli] oc expose can ensure the expose command is functioning as expected [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/390/476 "[sig-node] [FeatureGate:ImageVolume] ImageVolume when subPath is used should handle image volume with subPath [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:34:53Z" level=info msg="event interval matches FailedSchedulingDuringNodeUpdate" locator="{Kind map[hmsg:3c0ee6cb71 namespace:e2e-test-scc-lnchm pod:unsafe]}" message="{FailedScheduling 0/8 nodes are available: 3 node(s) had untolerated taint {node-role.kubernetes.io/master: }, 5 node(s) didn't match Pod's node affinity/selector. preemption: 0/8 nodes are available: 8 Preemption is not helpful for scheduling. map[firstTimestamp:0001-01-01T00:00:00Z lastTimestamp:0001-01-01T00:00:00Z reason:FailedScheduling]}" +passed: (4.8s) 2025-09-02T07:34:53 "[sig-cli] oc service creates and deletes services [Suite:openshift/conformance/parallel]" + +started: 2/391/476 "[sig-imageregistry][Feature:Image] oc tag should preserve image reference for external images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (4.6s) 2025-09-02T07:34:54 "[sig-auth][Feature:SecurityContextConstraints] TestPodUpdateSCCEnforcement [apigroup:user.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/392/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for route.openshift.io/v1, Resource=routes [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:512]: Not using one of the specified OpenshiftSDN modes + +skipped: (1.8s) 2025-09-02T07:34:54 "[sig-network] multicast when using one of the OpenshiftSDN modes 'redhat/openshift-ovs-multitenant, redhat/openshift-ovs-networkpolicy' should allow multicast traffic in namespaces where it is enabled [Suite:openshift/conformance/parallel]" + +started: 2/393/476 "[sig-cli] oc basics can create and interact with a list of resources [Suite:openshift/conformance/parallel]" + +passed: (3.8s) 2025-09-02T07:34:55 "[sig-cli] oc adm build-chain [apigroup:build.openshift.io][apigroup:image.openshift.io][apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/394/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthaccesstokens [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (9.7s) 2025-09-02T07:34:56 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the route is updated to use new external certificate, but RBAC permissions are not added route update is rejected [Suite:openshift/conformance/parallel]" + +started: 2/395/476 "[Jira:service-ca][sig-api-machinery] sanity test should always pass [Suite:openshift/service-ca-operator/conformance/parallel]" + +passed: (0s) 2025-09-02T07:34:57 "[Jira:service-ca][sig-api-machinery] sanity test should always pass [Suite:openshift/service-ca-operator/conformance/parallel]" + +started: 2/396/476 "[sig-arch] ClusterOperators [apigroup:config.openshift.io] should define at least one namespace in their lists of related objects [Suite:openshift/conformance/parallel]" + +passed: (25.8s) 2025-09-02T07:34:57 "[sig-network-edge][Feature:Idling] Idling with a single service and ReplicationController should idle the service and ReplicationController properly [Suite:openshift/conformance/parallel]" + +started: 2/397/476 "[sig-cli] oc explain should contain proper fields description for project.openshift.io [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:34:57 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for route.openshift.io/v1, Resource=routes [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/398/476 "[sig-apps][Feature:OpenShiftControllerManager] TestDeploymentConfigDefaults [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (24.5s) 2025-09-02T07:34:58 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is deleted and re-created again then routes are reachable [Suite:openshift/conformance/parallel]" + +started: 2/399/476 "[Jira:kube-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-kube-apiserver-operator/conformance/parallel]" + +passed: (3.4s) 2025-09-02T07:34:59 "[sig-imageregistry][Feature:Image] oc tag should preserve image reference for external images [apigroup:image.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/400/476 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"control-plane-node.kubeconfig\" should be present in all kube-apiserver containers [Suite:openshift/conformance/parallel/minimal]" + +passed: (14.7s) 2025-09-02T07:34:59 "[sig-devex][Feature:Templates] templateinstance impersonation tests [apigroup:user.openshift.io][apigroup:authorization.openshift.io] should pass impersonation update tests [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/401/476 "[sig-network] external gateway address when using openshift ovn-kubernetes should match the address family of the pod [Suite:openshift/conformance/parallel]" + +passed: (5.6s) 2025-09-02T07:34:59 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should install a cluster extension" + +started: 2/402/476 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when selinux should default to selinux label of namespace if pod has none" + +passed: (2.2s) 2025-09-02T07:34:59 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthaccesstokens [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/403/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when subject is not already bound and is not permitted by any RBR should fail [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (26.9s) 2025-09-02T07:34:59 "[sig-network] Internal connectivity for TCP and UDP on ports 9000-9999 is allowed [Serial:Self] [Suite:openshift/conformance/parallel]" + +started: 2/404/476 "[sig-arch] [Conformance] sysctl whitelists kernel.shm_rmid_forced [Suite:openshift/conformance/parallel/minimal]" + +passed: (0s) 2025-09-02T07:34:59 "[Jira:kube-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/cluster-kube-apiserver-operator/conformance/parallel]" + +started: 2/405/476 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should delete an entry from an array with multiple field owners [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:35:01 "[sig-arch] ClusterOperators [apigroup:config.openshift.io] should define at least one namespace in their lists of related objects [Suite:openshift/conformance/parallel]" + +started: 2/406/476 "[sig-cli] oc basics can show correct whoami result with console [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (4.7s) 2025-09-02T07:35:01 "[sig-cli] oc basics can create and interact with a list of resources [Suite:openshift/conformance/parallel]" + +started: 2/407/476 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure default gatewayclass is accepted [Suite:openshift/conformance/parallel]" + +passed: (6.5s) 2025-09-02T07:35:01 "[sig-node] [FeatureGate:ImageVolume] ImageVolume when subPath is used should handle image volume with subPath [Suite:openshift/conformance/parallel]" + +started: 2/408/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for security.openshift.io/v1, Resource=rangeallocations [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:35:01 "[sig-apps][Feature:OpenShiftControllerManager] TestDeploymentConfigDefaults [apigroup:apps.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/409/476 "[sig-cli] oc basics can get version information from CLI [Suite:openshift/conformance/parallel]" + +passed: (2.2s) 2025-09-02T07:35:01 "[sig-cli] oc explain should contain proper fields description for project.openshift.io [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/410/476 "[sig-cli] oc adm policy [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (10.7s) 2025-09-02T07:35:01 "[sig-cli] oc set image can set images for pods and deployments [apigroup:image.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/411/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthclients [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:35:02 "[sig-api-machinery] JSON Patch [apigroup:operator.openshift.io] should delete an entry from an array with multiple field owners [Suite:openshift/conformance/parallel]" + +started: 2/412/476 "[sig-cli] oc api-resources can output expected information about project.openshift.io api-resources [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3s) 2025-09-02T07:35:05 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when subject is not already bound and is not permitted by any RBR should fail [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/413/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if the secret is in a different namespace [Suite:openshift/conformance/parallel]" + +passed: (3.8s) 2025-09-02T07:35:06 "[sig-cli] oc basics can show correct whoami result with console [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/414/476 "[sig-cli] oc adm ui-project-commands [apigroup:project.openshift.io][apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.9s) 2025-09-02T07:35:06 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for security.openshift.io/v1, Resource=rangeallocations [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/415/476 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestAuthorizationSubjectAccessReview should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (22.5s) 2025-09-02T07:35:06 "[sig-network][Feature:Router][apigroup:route.openshift.io] when FIPS is disabled the HAProxy router should serve routes when configured with a 1024-bit RSA key [Feature:Networking-IPv4] [Suite:openshift/conformance/parallel]" + +started: 2/416/476 "[sig-auth][Feature:LDAP] LDAP should start an OpenLDAP test server [apigroup:user.openshift.io][apigroup:security.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.7s) 2025-09-02T07:35:07 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for oauth.openshift.io/v1, Resource=oauthclients [apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/417/476 "[Conformance][sig-api-machinery][Feature:APIServer] kube-apiserver should be accessible via service network endpoint [Suite:openshift/conformance/parallel/minimal]" + +passed: (1m41s) 2025-09-02T07:35:07 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork isolates overlapping CIDRs with L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/418/476 "[sig-network] multicast when using one of the OpenshiftSDN modes 'redhat/openshift-ovs-subnet' should block multicast traffic [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:07Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:4 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:35:07Z reason:BackOff]}" +time="2025-09-02T07:35:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:istiod-openshift-gateway-7cd77c7ffd-rwsgr]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[firstTimestamp:2025-09-02T07:35:07Z lastTimestamp:2025-09-02T07:35:07Z reason:Unhealthy]}" +passed: (2.5s) 2025-09-02T07:35:07 "[sig-cli] oc api-resources can output expected information about project.openshift.io api-resources [apigroup:project.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/419/476 "[sig-api-machinery] API health endpoints should contain the required checks for the oauth-apiserver APIs [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:08Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:istiod-openshift-gateway-7cd77c7ffd-rwsgr]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:2 firstTimestamp:2025-09-02T07:35:07Z lastTimestamp:2025-09-02T07:35:08Z reason:Unhealthy]}" +passed: (22.1s) 2025-09-02T07:35:09 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the login URL for the allow all IDP [Suite:openshift/conformance/parallel]" + +started: 2/420/476 "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/openshift-apiserver/conformance/parallel]" + +passed: (2.3s) 2025-09-02T07:35:09 "[sig-cli] oc basics can get version information from CLI [Suite:openshift/conformance/parallel]" + +started: 2/421/476 "[sig-cli] policy scc-subject-review, scc-review [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:09Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:istiod-openshift-gateway-7cd77c7ffd-rwsgr]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:3 firstTimestamp:2025-09-02T07:35:07Z lastTimestamp:2025-09-02T07:35:09Z reason:Unhealthy]}" +passed: (25.4s) 2025-09-02T07:35:09 "[sig-auth][Feature:HTPasswdAuth] HTPasswd IDP should successfully configure htpasswd and be responsive [apigroup:user.openshift.io][apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/422/476 "[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (6.8s) 2025-09-02T07:35:09 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure default gatewayclass is accepted [Suite:openshift/conformance/parallel]" + +started: 2/423/476 "[sig-api-machinery][Feature:ResourceQuota] Object count check the quota after import-image with --all option [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:35:10 "[Jira:openshift-apiserver][sig-api-machinery] sanity test should always pass [Suite:openshift/openshift-apiserver/conformance/parallel]" + +started: 2/424/476 "[sig-network][Feature:tuning] pod sysctl should not affect newly created pods [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + + I0902 07:35:11.329078 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (32s) 2025-09-02T07:35:11 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L3 primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/425/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow direct connections to pods from guest cluster pod in pod network across different guest nodes [Suite:openshift/conformance/parallel]" + +passed: (1.6s) 2025-09-02T07:35:11 "[sig-api-machinery] API health endpoints should contain the required checks for the oauth-apiserver APIs [Suite:openshift/conformance/parallel]" + +started: 2/426/476 "[sig-installer][Feature:baremetal] Baremetal platform should have baremetalhost resources [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:512]: Not using one of the specified OpenshiftSDN modes + +skipped: (2.9s) 2025-09-02T07:35:12 "[sig-network] multicast when using one of the OpenshiftSDN modes 'redhat/openshift-ovs-subnet' should block multicast traffic [Suite:openshift/conformance/parallel]" + +started: 2/427/476 "[sig-cli] oc explain networking types when using openshift-sdn should contain proper fields description for special networking types [Suite:openshift/conformance/parallel]" + +passed: (7s) 2025-09-02T07:35:14 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with invalid setup the router should not support external certificate if the secret is in a different namespace [Suite:openshift/conformance/parallel]" + +started: 2/428/476 "[sig-cli] oc help works as expected [Suite:openshift/conformance/parallel]" + +passed: (1m9s) 2025-09-02T07:35:14 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure custom gatewayclass can be accepted [Suite:openshift/conformance/parallel]" + +started: 2/429/476 "[sig-network] services when using a plugin in a mode that does not isolate namespaces by default should allow connections to pods in different namespaces on different nodes via service IPs [Suite:openshift/conformance/parallel]" + +passed: (13s) 2025-09-02T07:35:15 "[sig-arch] [Conformance] sysctl whitelists kernel.shm_rmid_forced [Suite:openshift/conformance/parallel/minimal]" + +started: 2/430/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork is isolated from the default network with L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (4.1s) 2025-09-02T07:35:15 "[sig-cli] policy scc-subject-review, scc-review [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/431/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes pods within namespace should be isolated when deny policy is present in L2 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +passed: (7.4s) 2025-09-02T07:35:16 "[Conformance][sig-api-machinery][Feature:APIServer] kube-apiserver should be accessible via service network endpoint [Suite:openshift/conformance/parallel/minimal]" + +started: 2/432/476 "[sig-cli] oc env can set environment variables for deployment [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (2.9s) 2025-09-02T07:35:17 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow direct connections to pods from guest cluster pod in pod network across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 2/433/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint" + +skip [github.com/openshift/origin/test/extended/baremetal/common.go:26]: No baremetal platform detected + +skipped: (2.8s) 2025-09-02T07:35:17 "[sig-installer][Feature:baremetal] Baremetal platform should have baremetalhost resources [Suite:openshift/conformance/parallel]" + +started: 2/434/476 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that do not expire works as expected when using a code authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (14s) 2025-09-02T07:35:17 "[sig-cli] oc adm policy [apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/435/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a RBAC rolebinding when subject is not already bound and is not permitted by any RBR should fail [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:526]: Not using openshift-sdn + +skipped: (3s) 2025-09-02T07:35:18 "[sig-cli] oc explain networking types when using openshift-sdn should contain proper fields description for special networking types [Suite:openshift/conformance/parallel]" + +started: 2/436/476 "[sig-auth][Feature:ProjectAPI] TestProjectWatchWithSelectionPredicate should succeed [apigroup:project.openshift.io][apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T07:35:18 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-community-operators Catalog should serve FBC via the /v1/api/all endpoint" + +started: 2/437/476 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For the default network Pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv4 [Suite:openshift/conformance/parallel]" + +passed: (33.6s) 2025-09-02T07:35:18 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"check-endpoints.kubeconfig\" should be present in all kube-apiserver containers [Suite:openshift/conformance/parallel/minimal]" + +started: 2/438/476 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is updated then also routes are reachable [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:19Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:35:19Z reason:BackOff]}" +passed: (2.9s) 2025-09-02T07:35:19 "[sig-cli] oc help works as expected [Suite:openshift/conformance/parallel]" + +started: 2/439/476 "[sig-cli] oc explain should contain proper fields description for securitycontextconstraints of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (8.7s) 2025-09-02T07:35:20 "[sig-cli] oc builds complex build webhooks CRUD [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/440/476 "[sig-node][apigroup:config.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] required pods on the Arbiter node Should verify that the correct number of pods are running on the Arbiter node [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:21Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:5 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:35:21Z reason:BackOff]}" +time="2025-09-02T07:35:21Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:e7fde8453d namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-fwjjx-openshift-default-5496775b6-92zf8]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.27:15021/healthz/ready\": dial tcp 10.131.0.27:15021: connect: connection refused\nbody: \n map[firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:21Z reason:ProbeError]}" +time="2025-09-02T07:35:21Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:34c6158d48 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-fwjjx-openshift-default-5496775b6-92zf8]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.27:15021/healthz/ready\": dial tcp 10.131.0.27:15021: connect: connection refused map[firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:21Z reason:Unhealthy]}" +time="2025-09-02T07:35:21Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:0b13dc279b namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused\nbody: \n map[firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:21Z reason:ProbeError]}" +time="2025-09-02T07:35:21Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:14f160a9a0 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused map[firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:21Z reason:Unhealthy]}" +time="2025-09-02T07:35:22Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:e7fde8453d namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-fwjjx-openshift-default-5496775b6-92zf8]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.27:15021/healthz/ready\": dial tcp 10.131.0.27:15021: connect: connection refused\nbody: \n map[count:2 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:22Z reason:ProbeError]}" +time="2025-09-02T07:35:22Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:34c6158d48 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-fwjjx-openshift-default-5496775b6-92zf8]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.27:15021/healthz/ready\": dial tcp 10.131.0.27:15021: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:22Z reason:Unhealthy]}" +passed: (2.1s) 2025-09-02T07:35:22 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a RBAC rolebinding when subject is not already bound and is not permitted by any RBR should fail [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/441/476 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow direct connections to pods from guest cluster pod in host network across different guest nodes [Suite:openshift/conformance/parallel]" + +passed: (9.3s) 2025-09-02T07:35:22 "[sig-api-machinery][Feature:ResourceQuota] Object count check the quota after import-image with --all option [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/442/476 "[sig-cli] oc explain should contain spec+status for podsecuritypolicyselfsubjectreviews of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/two_node/common.go:24]: Cluster is not in HighlyAvailableArbiter topology, skipping test + +skipped: (0s) 2025-09-02T07:35:22 "[sig-node][apigroup:config.openshift.io][OCPFeatureGate:HighlyAvailableArbiter] required pods on the Arbiter node Should verify that the correct number of pods are running on the Arbiter node [Suite:openshift/conformance/parallel]" + +started: 2/443/476 "[sig-cli] oc explain should contain proper fields description for route.openshift.io [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:22Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:0b13dc279b namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused\nbody: \n map[count:2 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:22Z reason:ProbeError]}" +time="2025-09-02T07:35:22Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:14f160a9a0 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused map[count:2 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:22Z reason:Unhealthy]}" +skip [github.com/openshift/origin/test/extended/networking/route_advertisements.go:167]: This cloud platform () is not supported for this test + +skipped: (2.1s) 2025-09-02T07:35:23 "[sig-network][OCPFeatureGate:RouteAdvertisements][Feature:RouteAdvertisements][apigroup:operator.openshift.io] when using openshift ovn-kubernetes [EgressIP] Advertising EgressIP [apigroup:user.openshift.io][apigroup:security.openshift.io] For the default network Pods should have the assigned EgressIPs and EgressIPs can be created, updated and deleted [apigroup:route.openshift.io] When the network is IPv4 [Suite:openshift/conformance/parallel]" + +started: 2/444/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork is isolated from the default network with L3 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (2.1s) 2025-09-02T07:35:23 "[sig-cli] oc explain should contain proper fields description for securitycontextconstraints of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/445/476 "[sig-auth][Feature:PodSecurity][Feature:SCC] creating pod controllers [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:23Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:e7fde8453d namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-fwjjx-openshift-default-5496775b6-92zf8]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.27:15021/healthz/ready\": dial tcp 10.131.0.27:15021: connect: connection refused\nbody: \n map[count:3 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:23Z reason:ProbeError]}" +time="2025-09-02T07:35:23Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:34c6158d48 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-fwjjx-openshift-default-5496775b6-92zf8]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.27:15021/healthz/ready\": dial tcp 10.131.0.27:15021: connect: connection refused map[count:3 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:23Z reason:Unhealthy]}" +time="2025-09-02T07:35:23Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:0b13dc279b namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused\nbody: \n map[count:3 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:23Z reason:ProbeError]}" +time="2025-09-02T07:35:23Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:14f160a9a0 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused map[count:3 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:23Z reason:Unhealthy]}" +time="2025-09-02T07:35:24Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:0b13dc279b namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{ProbeError Startup probe error: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused\nbody: \n map[count:4 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:24Z reason:ProbeError]}" +time="2025-09-02T07:35:24Z" level=info msg="event interval matches ConnectionErrorDuringSingleNodeAPIServerTargetDown" locator="{Kind map[hmsg:14f160a9a0 namespace:openshift-ingress node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:gateway-lv79t-openshift-default-6d5bf4598b-jcr82]}" message="{Unhealthy Startup probe failed: Get \"http://10.131.0.28:15021/healthz/ready\": dial tcp 10.131.0.28:15021: connect: connection refused map[count:4 firstTimestamp:2025-09-02T07:35:21Z lastTimestamp:2025-09-02T07:35:24Z reason:Unhealthy]}" +passed: (7s) 2025-09-02T07:35:25 "[sig-cli] oc env can set environment variables for deployment [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/446/476 "[sig-node] [Conformance] Prevent openshift node labeling on update by the node TestOpenshiftNodeLabeling [Suite:openshift/conformance/parallel/minimal]" + +skip [github.com/openshift/origin/test/extended/kubevirt/util.go:358]: Not running in KubeVirt cluster + +skipped: (1.9s) 2025-09-02T07:35:26 "[sig-kubevirt] services when running openshift cluster on KubeVirt virtual machines should allow direct connections to pods from guest cluster pod in host network across different guest nodes [Suite:openshift/conformance/parallel]" + +started: 2/447/476 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should prevent connections to pods in different namespaces on the same node via service IPs [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:35:26 "[sig-cli] oc explain should contain spec+status for podsecuritypolicyselfsubjectreviews of security.openshift.io, if the resource is present [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/448/476 "[sig-devex][Feature:OpenShiftControllerManager] TestDockercfgTokenDeletedController [apigroup:image.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (2.2s) 2025-09-02T07:35:26 "[sig-cli] oc explain should contain proper fields description for route.openshift.io [apigroup:route.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/449/476 "[sig-node] supplemental groups Ensure supplemental groups propagate to docker should propagate requested groups to the container [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (26.1s) 2025-09-02T07:35:27 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"control-plane-node.kubeconfig\" should be present in all kube-apiserver containers [Suite:openshift/conformance/parallel/minimal]" + +started: 2/450/476 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the grant URL [Suite:openshift/conformance/parallel]" + +passed: (3.4s) 2025-09-02T07:35:28 "[sig-auth][Feature:PodSecurity][Feature:SCC] creating pod controllers [Suite:openshift/conformance/parallel]" + +started: 2/451/476 "[sig-api-machinery][Feature:APIServer] authenticated browser should get a 200 from / [Suite:openshift/conformance/parallel]" + +passed: (18.9s) 2025-09-02T07:35:28 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestAuthorizationSubjectAccessReview should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/452/476 "[sig-imageregistry][Feature:ImageTriggers] Annotation trigger reconciles after the image is overwritten [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1m36s) 2025-09-02T07:35:28 "[sig-devex] check registry.redhat.io is available and samples operator can import sample imagestreams run sample related validations [apigroup:config.openshift.io][apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/453/476 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint" + +passed: (0s) 2025-09-02T07:35:29 "[sig-api-machinery][Feature:APIServer] authenticated browser should get a 200 from / [Suite:openshift/conformance/parallel]" + +started: 2/454/476 "[sig-cluster-lifecycle] TestAdminAck should succeed [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:35:29 "[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 openshift-certified-operators Catalog should serve FBC via the /v1/api/all endpoint" + +started: 2/455/476 "[sig-cli] oc explain should contain proper fields description for console.openshift.io [apigroup:console.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/networking/util.go:480]: This plugin does not isolate namespaces by default. + +skipped: (1.7s) 2025-09-02T07:35:30 "[sig-network] services when using a plugin in a mode that isolates namespaces by default should prevent connections to pods in different namespaces on the same node via service IPs [Suite:openshift/conformance/parallel]" + +started: 2/456/476 "[sig-apps] poddisruptionbudgets with unhealthyPodEvictionPolicy should evict according to the AlwaysAllow policy [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (2.6s) 2025-09-02T07:35:31 "[sig-devex][Feature:OpenShiftControllerManager] TestDockercfgTokenDeletedController [apigroup:image.openshift.io] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/457/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller pod connected to ClusterUserDefinedNetwork CR & managed NADs cannot be deleted when being used [Suite:openshift/conformance/parallel]" + +passed: (23.2s) 2025-09-02T07:35:32 "[sig-auth][Feature:LDAP] LDAP should start an OpenLDAP test server [apigroup:user.openshift.io][apigroup:security.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/458/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions can perform east/west traffic between nodes for two pods connected over a L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (15s) 2025-09-02T07:35:33 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes pods within namespace should be isolated when deny policy is present in L2 dualstack primary UDN [Suite:openshift/conformance/parallel]" + +started: 2/459/476 "[sig-cli] oc adm role-selectors [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:35:33 "[sig-cluster-lifecycle] TestAdminAck should succeed [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/460/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestMultipleImageChangeBuildTriggers [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (16.5s) 2025-09-02T07:35:33 "[sig-network] services when using a plugin in a mode that does not isolate namespaces by default should allow connections to pods in different namespaces on different nodes via service IPs [Suite:openshift/conformance/parallel]" + +started: 2/461/476 "[sig-apimachinery] server-side-apply should function properly should clear fields when they are no longer being applied in FeatureGates [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (3.1s) 2025-09-02T07:35:34 "[sig-cli] oc explain should contain proper fields description for console.openshift.io [apigroup:console.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/462/476 "[sig-cli] oc explain list uncovered GroupVersionResources [Suite:openshift/conformance/parallel]" + +passed: (5.2s) 2025-09-02T07:35:35 "[sig-imageregistry][Feature:ImageTriggers] Annotation trigger reconciles after the image is overwritten [apigroup:image.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 2/463/476 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster workloads in non-annotated namespaces should be allowed if CPUPartitioningMode = AllNodes with a warning annotation [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:35Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:6 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:35:35Z reason:BackOff]}" +passed: (6.9s) 2025-09-02T07:35:35 "[sig-node] [Conformance] Prevent openshift node labeling on update by the node TestOpenshiftNodeLabeling [Suite:openshift/conformance/parallel/minimal]" + +started: 2/464/476 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:35:36 "[sig-apimachinery] server-side-apply should function properly should clear fields when they are no longer being applied in FeatureGates [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/465/476 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for template.openshift.io/v1, Resource=templateinstances [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (15.8s) 2025-09-02T07:35:36 "[sig-auth][Feature:ProjectAPI] TestProjectWatchWithSelectionPredicate should succeed [apigroup:project.openshift.io][apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/466/476 "[sig-cli] oc builds new-build [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (4.1s) 2025-09-02T07:35:38 "[sig-cli] oc adm role-selectors [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/467/476 "[sig-cli] oc observe works as expected [Suite:openshift/conformance/parallel]" + +passed: (9.5s) 2025-09-02T07:35:38 "[sig-node] supplemental groups Ensure supplemental groups propagate to docker should propagate requested groups to the container [apigroup:security.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/468/476 "[sig-operator] OLM should Implement packages API server and list packagemanifest info with namespace not NULL [apigroup:packages.operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +passed: (2.5s) 2025-09-02T07:35:38 "[sig-cli] oc explain list uncovered GroupVersionResources [Suite:openshift/conformance/parallel]" + +started: 2/469/476 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagDocker [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (5.2s) 2025-09-02T07:35:39 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestMultipleImageChangeBuildTriggers [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/470/476 "[sig-cli] oc api-resources can output expected information about operator.openshift.io api-resources [apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2s) 2025-09-02T07:35:40 "[sig-api-machinery][Feature:ServerSideApply] Server-Side Apply should work for template.openshift.io/v1, Resource=templateinstances [apigroup:template.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/471/476 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when subject is already bound should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (200ms) 2025-09-02T07:35:41 "[sig-operator] OLM should Implement packages API server and list packagemanifest info with namespace not NULL [apigroup:packages.operators.coreos.com] [Skipped:NoOptionalCapabilities] [Suite:openshift/conformance/parallel]" + +started: 2/472/476 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when selinux should not override selinux change policy if pod already has one" + +passed: (22.7s) 2025-09-02T07:35:41 "[sig-auth][Feature:OAuthServer] [Token Expiration] Using a OAuth client with a non-default token max age [apigroup:oauth.openshift.io] to generate tokens that do not expire works as expected when using a code authorization flow [apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/473/476 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"lb-int.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +time="2025-09-02T07:35:42Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:36b79e79a9 namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-remove-condition-m4zm5]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 500 map[count:2 firstTimestamp:2025-09-02T07:32:41Z lastTimestamp:2025-09-02T07:35:42Z reason:Unhealthy]}" +passed: (1.6s) 2025-09-02T07:35:43 "[sig-cli] oc api-resources can output expected information about operator.openshift.io api-resources [apigroup:operator.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/474/476 "[sig-auth][Feature:UserAPI] groups should work [apigroup:user.openshift.io][apigroup:project.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (2.5s) 2025-09-02T07:35:43 "[sig-imageregistry][Feature:ImageTriggers] Image change build triggers TestSimpleImageChangeBuildTriggerFromImageStreamTagDocker [apigroup:image.openshift.io][apigroup:build.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/475/476 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestClusterReaderCoverage should succeed [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:43Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:f795921e7e namespace:e2e-test-router-stress-7tfks node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:router-add-condition-tpktm]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.1.192:1936/healthz/ready\": dial tcp 10.131.1.192:1936: connect: connection refused map[count:4 firstTimestamp:2025-09-02T07:32:11Z lastTimestamp:2025-09-02T07:35:43Z reason:Unhealthy]}" +passed: (1.7s) 2025-09-02T07:35:43 "[sig-auth][Feature:RoleBindingRestrictions] RoleBindingRestrictions should be functional Create a rolebinding when subject is already bound should succeed [apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 2/476/476 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure OSSM and OLM related resources are created after creating GatewayClass [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/authorization/authorization.go:51]: this test was in integration and didn't cover a real configuration, so it's horribly, horribly wrong now + +skipped: (1.2s) 2025-09-02T07:35:46 "[sig-auth][Feature:OpenShiftAuthorization] authorization TestClusterReaderCoverage should succeed [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:46Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:2 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:35:46Z reason:BackOff]}" +passed: (13.3s) 2025-09-02T07:35:46 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions can perform east/west traffic between nodes for two pods connected over a L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (26s) 2025-09-02T07:35:47 "[sig-network][OCPFeatureGate:RouteExternalCertificate][Feature:Router][apigroup:route.openshift.io] with valid setup the router should support external certificate and the secret is updated then also routes are reachable [Suite:openshift/conformance/parallel]" + +passed: (14.9s) 2025-09-02T07:35:47 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes ClusterUserDefinedNetwork CRD Controller pod connected to ClusterUserDefinedNetwork CR & managed NADs cannot be deleted when being used [Suite:openshift/conformance/parallel]" + +passed: (3.7s) 2025-09-02T07:35:48 "[sig-auth][Feature:UserAPI] groups should work [apigroup:user.openshift.io][apigroup:project.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:35:49Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:7 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:35:49Z reason:BackOff]}" +passed: (6.5s) 2025-09-02T07:35:50 "[Conformance][sig-api-machinery][Feature:APIServer] local kubeconfig \"lb-int.kubeconfig\" should be present on all masters and work [Suite:openshift/conformance/parallel/minimal]" + +passed: (10.7s) 2025-09-02T07:35:51 "[sig-cli] oc observe works as expected [Suite:openshift/conformance/parallel]" + +passed: (22.5s) 2025-09-02T07:35:52 "[sig-auth][Feature:OAuthServer] [Headers][apigroup:route.openshift.io][apigroup:config.openshift.io][apigroup:oauth.openshift.io] expected headers returned from the grant URL [Suite:openshift/conformance/parallel]" + + STEP: Creating a kubernetes client @ 09/02/25 07:33:52.66 +I0902 07:33:52.816652 92773 client.go:288] configPath is now "/tmp/configfile1350243650" +I0902 07:33:52.816706 92773 client.go:363] The user is now "e2e-test-templates-gs774-user" +I0902 07:33:52.816718 92773 client.go:365] Creating project "e2e-test-templates-gs774" +I0902 07:33:52.981657 92773 client.go:373] Waiting on permissions in project "e2e-test-templates-gs774" ... +I0902 07:33:53.034114 92773 client.go:402] DeploymentConfig capability is enabled, adding 'deployer' SA to the list of default SAs +I0902 07:33:53.054695 92773 client.go:417] Waiting for ServiceAccount "default" to be provisioned... +I0902 07:33:53.194197 92773 client.go:417] Waiting for ServiceAccount "builder" to be provisioned... +I0902 07:33:53.326853 92773 client.go:417] Waiting for ServiceAccount "deployer" to be provisioned... +I0902 07:33:53.493888 92773 client.go:427] Waiting for RoleBinding "system:image-pullers" to be provisioned... +I0902 07:33:53.502928 92773 client.go:427] Waiting for RoleBinding "system:image-builders" to be provisioned... +I0902 07:33:53.512850 92773 client.go:427] Waiting for RoleBinding "system:deployers" to be provisioned... +I0902 07:33:53.786334 92773 client.go:460] Project "e2e-test-templates-gs774" has been fully provisioned. +I0902 07:33:53.787679 92773 framework.go:73] Waiting up to 2 minutes for the internal registry hostname to be published +I0902 07:33:56.521165 92773 framework.go:187] the OCM pod logs indicate the build controller was started after the internal registry hostname has been set in the OCM config +I0902 07:33:56.521237 92773 framework.go:214] OCM rollout progressing status reports complete +I0902 07:33:56.521352 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/configfile1350243650 create -f /tmp/fixture-testdata-dir1591030855/test/extended/testdata/templates/templateinstance_readiness.yaml' +template.template.openshift.io/simple-example created + STEP: instantiating the templateinstance @ 09/02/25 07:33:56.733 + STEP: waiting for build and dc to settle @ 09/02/25 07:33:56.76 + STEP: waiting for the templateinstance to indicate ready @ 09/02/25 07:35:20.828 +dumping object readiness for e2e-test-templates-gs774/templateinstance +BuildConfig e2e-test-templates-gs774/simple-example: ready true, failed false +Deployment e2e-test-templates-gs774/simple-example: ready false, failed false +object: &unstructured.Unstructured{Object:map[string]interface {}{"apiVersion":"apps/v1", "kind":"Deployment", "metadata":map[string]interface {}{"annotations":map[string]interface {}{"deployment.kubernetes.io/revision":"2", "description":"Defines how to deploy the application server", "image.openshift.io/triggers":"[{\"from\":{\"kind\":\"ImageStreamTag\",\"name\":\"simple-example:latest\"},\"fieldPath\": \"spec.template.spec.containers[0].image\"}]", "template.alpha.openshift.io/wait-for-ready":"true"}, "creationTimestamp":"2025-09-02T07:33:57Z", "generation":2, "labels":map[string]interface {}{"template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"}, "managedFields":[]interface {}{map[string]interface {}{"apiVersion":"apps/v1", "fieldsType":"FieldsV1", "fieldsV1":map[string]interface {}{"f:metadata":map[string]interface {}{"f:annotations":map[string]interface {}{".":map[string]interface {}{}, "f:description":map[string]interface {}{}, "f:image.openshift.io/triggers":map[string]interface {}{}, "f:template.alpha.openshift.io/wait-for-ready":map[string]interface {}{}}, "f:labels":map[string]interface {}{".":map[string]interface {}{}, "f:template.openshift.io/template-instance-owner":map[string]interface {}{}}}, "f:spec":map[string]interface {}{"f:progressDeadlineSeconds":map[string]interface {}{}, "f:replicas":map[string]interface {}{}, "f:revisionHistoryLimit":map[string]interface {}{}, "f:selector":map[string]interface {}{}, "f:strategy":map[string]interface {}{"f:rollingUpdate":map[string]interface {}{".":map[string]interface {}{}, "f:maxSurge":map[string]interface {}{}, "f:maxUnavailable":map[string]interface {}{}}, "f:type":map[string]interface {}{}}, "f:template":map[string]interface {}{"f:metadata":map[string]interface {}{"f:labels":map[string]interface {}{".":map[string]interface {}{}, "f:name":map[string]interface {}{}}, "f:name":map[string]interface {}{}}, "f:spec":map[string]interface {}{"f:containers":map[string]interface {}{"k:{\"name\":\"simple-example\"}":map[string]interface {}{".":map[string]interface {}{}, "f:image":map[string]interface {}{}, "f:imagePullPolicy":map[string]interface {}{}, "f:name":map[string]interface {}{}, "f:ports":map[string]interface {}{".":map[string]interface {}{}, "k:{\"containerPort\":8080,\"protocol\":\"TCP\"}":map[string]interface {}{".":map[string]interface {}{}, "f:containerPort":map[string]interface {}{}, "f:protocol":map[string]interface {}{}}}, "f:resources":map[string]interface {}{}, "f:terminationMessagePath":map[string]interface {}{}, "f:terminationMessagePolicy":map[string]interface {}{}}}, "f:dnsPolicy":map[string]interface {}{}, "f:restartPolicy":map[string]interface {}{}, "f:schedulerName":map[string]interface {}{}, "f:securityContext":map[string]interface {}{}, "f:terminationGracePeriodSeconds":map[string]interface {}{}}}}}, "manager":"openshift-controller-manager", "operation":"Update", "time":"2025-09-02T07:34:18Z"}, map[string]interface {}{"apiVersion":"apps/v1", "fieldsType":"FieldsV1", "fieldsV1":map[string]interface {}{"f:metadata":map[string]interface {}{"f:annotations":map[string]interface {}{"f:deployment.kubernetes.io/revision":map[string]interface {}{}}}, "f:status":map[string]interface {}{"f:conditions":map[string]interface {}{".":map[string]interface {}{}, "k:{\"type\":\"Available\"}":map[string]interface {}{".":map[string]interface {}{}, "f:lastTransitionTime":map[string]interface {}{}, "f:lastUpdateTime":map[string]interface {}{}, "f:message":map[string]interface {}{}, "f:reason":map[string]interface {}{}, "f:status":map[string]interface {}{}, "f:type":map[string]interface {}{}}, "k:{\"type\":\"Progressing\"}":map[string]interface {}{".":map[string]interface {}{}, "f:lastTransitionTime":map[string]interface {}{}, "f:lastUpdateTime":map[string]interface {}{}, "f:message":map[string]interface {}{}, "f:reason":map[string]interface {}{}, "f:status":map[string]interface {}{}, "f:type":map[string]interface {}{}}}, "f:observedGeneration":map[string]interface {}{}, "f:replicas":map[string]interface {}{}, "f:unavailableReplicas":map[string]interface {}{}, "f:updatedReplicas":map[string]interface {}{}}}, "manager":"kube-controller-manager", "operation":"Update", "subresource":"status", "time":"2025-09-02T07:35:21Z"}}, "name":"simple-example", "namespace":"e2e-test-templates-gs774", "resourceVersion":"236515", "uid":"a09e62bc-c4e3-49b3-a9f6-e58c21c8b851"}, "spec":map[string]interface {}{"progressDeadlineSeconds":600, "replicas":1, "revisionHistoryLimit":10, "selector":map[string]interface {}{"matchLabels":map[string]interface {}{"name":"simple-example"}}, "strategy":map[string]interface {}{"rollingUpdate":map[string]interface {}{"maxSurge":"25%", "maxUnavailable":"25%"}, "type":"RollingUpdate"}, "template":map[string]interface {}{"metadata":map[string]interface {}{"creationTimestamp":interface {}(nil), "labels":map[string]interface {}{"name":"simple-example"}, "name":"simple-example"}, "spec":map[string]interface {}{"containers":[]interface {}{map[string]interface {}{"image":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90", "imagePullPolicy":"IfNotPresent", "name":"simple-example", "ports":[]interface {}{map[string]interface {}{"containerPort":8080, "protocol":"TCP"}}, "resources":map[string]interface {}{}, "terminationMessagePath":"/dev/termination-log", "terminationMessagePolicy":"File"}}, "dnsPolicy":"ClusterFirst", "restartPolicy":"Always", "schedulerName":"default-scheduler", "securityContext":map[string]interface {}{}, "terminationGracePeriodSeconds":30}}}, "status":map[string]interface {}{"conditions":[]interface {}{map[string]interface {}{"lastTransitionTime":"2025-09-02T07:33:57Z", "lastUpdateTime":"2025-09-02T07:35:20Z", "message":"ReplicaSet \"simple-example-5685685fbb\" has successfully progressed.", "reason":"NewReplicaSetAvailable", "status":"True", "type":"Progressing"}, map[string]interface {}{"lastTransitionTime":"2025-09-02T07:35:21Z", "lastUpdateTime":"2025-09-02T07:35:21Z", "message":"Deployment does not have minimum availability.", "reason":"MinimumReplicasUnavailable", "status":"False", "type":"Available"}}, "observedGeneration":2, "replicas":1, "unavailableReplicas":1, "updatedReplicas":1}}} + [FAILED] in [It] - github.com/openshift/origin/test/extended/templates/templateinstance_readiness.go:171 @ 09/02/25 07:35:50.95 +I0902 07:35:50.950863 92773 framework.go:582] Dumping pod state for namespace e2e-test-templates-gs774 +I0902 07:35:50.950974 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 get pods -o yaml' +I0902 07:35:51.107422 92773 framework.go:588] apiVersion: v1 +items: +- apiVersion: v1 + kind: Pod + metadata: + annotations: + k8s.ovn.org/pod-networks: '{"default":{"ip_addresses":["10.130.2.89/23"],"mac_address":"0a:58:0a:82:02:59","gateway_ips":["10.130.2.1"],"routes":[{"dest":"10.128.0.0/14","nextHop":"10.130.2.1"},{"dest":"172.30.0.0/16","nextHop":"10.130.2.1"},{"dest":"169.254.0.5/32","nextHop":"10.130.2.1"},{"dest":"100.64.0.0/16","nextHop":"10.130.2.1"}],"ip_address":"10.130.2.89/23","gateway_ip":"10.130.2.1","role":"primary"}}' + k8s.v1.cni.cncf.io/network-status: |- + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.130.2.89" + ], + "mac": "0a:58:0a:82:02:59", + "default": true, + "dns": {} + }] + openshift.io/build.name: simple-example-1 + openshift.io/scc: privileged + security.openshift.io/validated-scc-subject-type: user + creationTimestamp: "2025-09-02T07:33:57Z" + generation: 1 + labels: + openshift.io/build.name: simple-example-1 + name: simple-example-1-build + namespace: e2e-test-templates-gs774 + ownerReferences: + - apiVersion: build.openshift.io/v1 + controller: true + kind: Build + name: simple-example-1 + uid: eab76862-98d2-4c10-9648-43e1c9fb40cf + resourceVersion: "228065" + uid: 21923385-3307-453c-b5b2-2d42c44cfc1a + spec: + activeDeadlineSeconds: 604800 + containers: + - args: + - openshift-sti-build + - --v=0 + env: + - name: BUILD + value: | + {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"simple-example-1","namespace":"e2e-test-templates-gs774","uid":"eab76862-98d2-4c10-9648-43e1c9fb40cf","resourceVersion":"224849","generation":1,"creationTimestamp":"2025-09-02T07:33:57Z","labels":{"buildconfig":"simple-example","openshift.io/build-config.name":"simple-example","openshift.io/build.start-policy":"Serial","template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"},"annotations":{"openshift.io/build-config.name":"simple-example","openshift.io/build.number":"1"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"simple-example","uid":"80d5203b-1976-4341-ae0c-a3194258948c","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2025-09-02T07:33:57Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{},"f:template.openshift.io/template-instance-owner":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"80d5203b-1976-4341-ae0c-a3194258948c\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:serviceAccount":{},"f:source":{"f:git":{".":{},"f:uri":{}},"f:type":{}},"f:strategy":{"f:sourceStrategy":{".":{},"f:from":{}},"f:type":{}},"f:triggeredBy":{}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Git","git":{"uri":"https://github.com/sclorg/nodejs-ex"}},"strategy":{"type":"Source","sourceStrategy":{"from":{"kind":"DockerImage","name":"quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE"},"pullSecret":{"name":"builder-dockercfg-hcqjh"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest"},"pushSecret":{"name":"builder-dockercfg-hcqjh"}},"resources":{},"postCommit":{},"nodeSelector":null,"triggeredBy":[{"message":"Build configuration change"}]},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest","config":{"kind":"BuildConfig","namespace":"e2e-test-templates-gs774","name":"simple-example"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2025-09-02T07:33:57Z","lastTransitionTime":"2025-09-02T07:33:57Z"}]}} + - name: LANG + value: C.utf8 + - name: SOURCE_REPOSITORY + value: https://github.com/sclorg/nodejs-ex + - name: SOURCE_URI + value: https://github.com/sclorg/nodejs-ex + - name: ALLOWED_UIDS + value: 1- + - name: DROP_CAPS + value: KILL,MKNOD,SETGID,SETUID + - name: PUSH_DOCKERCFG_PATH + value: /var/run/secrets/openshift.io/push + - name: PULL_DOCKERCFG_PATH + value: /var/run/secrets/openshift.io/pull + - name: BUILD_REGISTRIES_CONF_PATH + value: /var/run/configs/openshift.io/build-system/registries.conf + - name: BUILD_REGISTRIES_DIR_PATH + value: /var/run/configs/openshift.io/build-system/registries.d + - name: BUILD_SIGNATURE_POLICY_PATH + value: /var/run/configs/openshift.io/build-system/policy.json + - name: BUILD_STORAGE_CONF_PATH + value: /var/run/configs/openshift.io/build-system/storage.conf + - name: BUILD_BLOBCACHE_DIR + value: /var/cache/blobs + image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + imagePullPolicy: IfNotPresent + name: sti-build + resources: {} + securityContext: + privileged: true + runAsGroup: 0 + runAsUser: 0 + seccompProfile: + type: Unconfined + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: FallbackToLogsOnError + volumeMounts: + - mountPath: /var/lib/kubelet/config.json + name: node-pullsecrets + readOnly: true + - mountPath: /tmp/build + name: buildworkdir + - mountPath: /var/lib/containers/cache + name: buildcachedir + - mountPath: /var/run/secrets/openshift.io/push + name: builder-dockercfg-hcqjh-push + readOnly: true + - mountPath: /var/run/secrets/openshift.io/pull + name: builder-dockercfg-hcqjh-pull + readOnly: true + - mountPath: /var/run/configs/openshift.io/build-system + name: build-system-configs + readOnly: true + - mountPath: /var/run/configs/openshift.io/certs + name: build-ca-bundles + - mountPath: /var/run/configs/openshift.io/pki + name: build-proxy-ca-bundles + - mountPath: /var/lib/containers + name: container-storage-root + - mountPath: /var/run/containers + name: container-storage-run + - mountPath: /var/cache/blobs + name: build-blob-cache + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-nl57l + readOnly: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + imagePullSecrets: + - name: builder-dockercfg-hcqjh + initContainers: + - args: + - openshift-git-clone + - --v=0 + env: + - name: BUILD + value: | + {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"simple-example-1","namespace":"e2e-test-templates-gs774","uid":"eab76862-98d2-4c10-9648-43e1c9fb40cf","resourceVersion":"224849","generation":1,"creationTimestamp":"2025-09-02T07:33:57Z","labels":{"buildconfig":"simple-example","openshift.io/build-config.name":"simple-example","openshift.io/build.start-policy":"Serial","template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"},"annotations":{"openshift.io/build-config.name":"simple-example","openshift.io/build.number":"1"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"simple-example","uid":"80d5203b-1976-4341-ae0c-a3194258948c","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2025-09-02T07:33:57Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{},"f:template.openshift.io/template-instance-owner":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"80d5203b-1976-4341-ae0c-a3194258948c\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:serviceAccount":{},"f:source":{"f:git":{".":{},"f:uri":{}},"f:type":{}},"f:strategy":{"f:sourceStrategy":{".":{},"f:from":{}},"f:type":{}},"f:triggeredBy":{}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Git","git":{"uri":"https://github.com/sclorg/nodejs-ex"}},"strategy":{"type":"Source","sourceStrategy":{"from":{"kind":"DockerImage","name":"quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE"},"pullSecret":{"name":"builder-dockercfg-hcqjh"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest"},"pushSecret":{"name":"builder-dockercfg-hcqjh"}},"resources":{},"postCommit":{},"nodeSelector":null,"triggeredBy":[{"message":"Build configuration change"}]},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest","config":{"kind":"BuildConfig","namespace":"e2e-test-templates-gs774","name":"simple-example"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2025-09-02T07:33:57Z","lastTransitionTime":"2025-09-02T07:33:57Z"}]}} + - name: LANG + value: C.utf8 + - name: SOURCE_REPOSITORY + value: https://github.com/sclorg/nodejs-ex + - name: SOURCE_URI + value: https://github.com/sclorg/nodejs-ex + - name: ALLOWED_UIDS + value: 1- + - name: DROP_CAPS + value: KILL,MKNOD,SETGID,SETUID + - name: BUILD_REGISTRIES_CONF_PATH + value: /var/run/configs/openshift.io/build-system/registries.conf + - name: BUILD_REGISTRIES_DIR_PATH + value: /var/run/configs/openshift.io/build-system/registries.d + - name: BUILD_SIGNATURE_POLICY_PATH + value: /var/run/configs/openshift.io/build-system/policy.json + - name: BUILD_STORAGE_CONF_PATH + value: /var/run/configs/openshift.io/build-system/storage.conf + - name: BUILD_BLOBCACHE_DIR + value: /var/cache/blobs + image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + imagePullPolicy: IfNotPresent + name: git-clone + resources: {} + securityContext: + capabilities: + add: + - CHOWN + - DAC_OVERRIDE + drop: + - ALL + privileged: false + runAsGroup: 0 + runAsNonRoot: false + runAsUser: 0 + seccompProfile: + type: RuntimeDefault + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: FallbackToLogsOnError + volumeMounts: + - mountPath: /tmp/build + name: buildworkdir + - mountPath: /var/run/configs/openshift.io/build-system + name: build-system-configs + readOnly: true + - mountPath: /var/run/configs/openshift.io/certs + name: build-ca-bundles + - mountPath: /var/run/configs/openshift.io/pki + name: build-proxy-ca-bundles + - mountPath: /var/cache/blobs + name: build-blob-cache + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-nl57l + readOnly: true + - args: + - openshift-manage-dockerfile + - --v=0 + env: + - name: BUILD + value: | + {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"simple-example-1","namespace":"e2e-test-templates-gs774","uid":"eab76862-98d2-4c10-9648-43e1c9fb40cf","resourceVersion":"224849","generation":1,"creationTimestamp":"2025-09-02T07:33:57Z","labels":{"buildconfig":"simple-example","openshift.io/build-config.name":"simple-example","openshift.io/build.start-policy":"Serial","template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"},"annotations":{"openshift.io/build-config.name":"simple-example","openshift.io/build.number":"1"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"simple-example","uid":"80d5203b-1976-4341-ae0c-a3194258948c","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2025-09-02T07:33:57Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{},"f:template.openshift.io/template-instance-owner":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"80d5203b-1976-4341-ae0c-a3194258948c\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:serviceAccount":{},"f:source":{"f:git":{".":{},"f:uri":{}},"f:type":{}},"f:strategy":{"f:sourceStrategy":{".":{},"f:from":{}},"f:type":{}},"f:triggeredBy":{}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Git","git":{"uri":"https://github.com/sclorg/nodejs-ex"}},"strategy":{"type":"Source","sourceStrategy":{"from":{"kind":"DockerImage","name":"quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE"},"pullSecret":{"name":"builder-dockercfg-hcqjh"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest"},"pushSecret":{"name":"builder-dockercfg-hcqjh"}},"resources":{},"postCommit":{},"nodeSelector":null,"triggeredBy":[{"message":"Build configuration change"}]},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest","config":{"kind":"BuildConfig","namespace":"e2e-test-templates-gs774","name":"simple-example"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2025-09-02T07:33:57Z","lastTransitionTime":"2025-09-02T07:33:57Z"}]}} + - name: LANG + value: C.utf8 + - name: SOURCE_REPOSITORY + value: https://github.com/sclorg/nodejs-ex + - name: SOURCE_URI + value: https://github.com/sclorg/nodejs-ex + - name: ALLOWED_UIDS + value: 1- + - name: DROP_CAPS + value: KILL,MKNOD,SETGID,SETUID + - name: BUILD_REGISTRIES_CONF_PATH + value: /var/run/configs/openshift.io/build-system/registries.conf + - name: BUILD_REGISTRIES_DIR_PATH + value: /var/run/configs/openshift.io/build-system/registries.d + - name: BUILD_SIGNATURE_POLICY_PATH + value: /var/run/configs/openshift.io/build-system/policy.json + - name: BUILD_STORAGE_CONF_PATH + value: /var/run/configs/openshift.io/build-system/storage.conf + - name: BUILD_BLOBCACHE_DIR + value: /var/cache/blobs + image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + imagePullPolicy: IfNotPresent + name: manage-dockerfile + resources: {} + securityContext: + capabilities: + add: + - CHOWN + - DAC_OVERRIDE + drop: + - ALL + privileged: false + runAsGroup: 0 + runAsNonRoot: false + runAsUser: 0 + seccompProfile: + type: RuntimeDefault + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: FallbackToLogsOnError + volumeMounts: + - mountPath: /tmp/build + name: buildworkdir + - mountPath: /var/run/configs/openshift.io/build-system + name: build-system-configs + readOnly: true + - mountPath: /var/run/configs/openshift.io/certs + name: build-ca-bundles + - mountPath: /var/run/configs/openshift.io/pki + name: build-proxy-ca-bundles + - mountPath: /var/cache/blobs + name: build-blob-cache + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-nl57l + readOnly: true + nodeName: ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 + nodeSelector: + kubernetes.io/os: linux + preemptionPolicy: PreemptLowerPriority + priority: 0 + restartPolicy: Never + schedulerName: default-scheduler + securityContext: {} + serviceAccount: builder + serviceAccountName: builder + terminationGracePeriodSeconds: 30 + tolerations: + - effect: NoExecute + key: node.kubernetes.io/not-ready + operator: Exists + tolerationSeconds: 300 + - effect: NoExecute + key: node.kubernetes.io/unreachable + operator: Exists + tolerationSeconds: 300 + volumes: + - hostPath: + path: /var/lib/kubelet/config.json + type: File + name: node-pullsecrets + - hostPath: + path: /var/lib/containers/cache + type: "" + name: buildcachedir + - emptyDir: {} + name: buildworkdir + - name: builder-dockercfg-hcqjh-push + secret: + defaultMode: 384 + secretName: builder-dockercfg-hcqjh + - name: builder-dockercfg-hcqjh-pull + secret: + defaultMode: 384 + secretName: builder-dockercfg-hcqjh + - configMap: + defaultMode: 420 + name: simple-example-1-sys-config + name: build-system-configs + - configMap: + defaultMode: 420 + items: + - key: service-ca.crt + path: certs.d/image-registry.openshift-image-registry.svc:5000/ca.crt + name: simple-example-1-ca + name: build-ca-bundles + - configMap: + defaultMode: 420 + items: + - key: ca-bundle.crt + path: tls-ca-bundle.pem + name: simple-example-1-global-ca + name: build-proxy-ca-bundles + - emptyDir: {} + name: container-storage-root + - emptyDir: {} + name: container-storage-run + - emptyDir: {} + name: build-blob-cache + - name: kube-api-access-nl57l + projected: + defaultMode: 420 + sources: + - serviceAccountToken: + expirationSeconds: 3607 + path: token + - configMap: + items: + - key: ca.crt + path: ca.crt + name: kube-root-ca.crt + - downwardAPI: + items: + - fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + path: namespace + - configMap: + items: + - key: service-ca.crt + path: service-ca.crt + name: openshift-service-ca.crt + status: + conditions: + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:20Z" + status: "False" + type: PodReadyToStartContainers + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:00Z" + reason: PodCompleted + status: "True" + type: Initialized + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:19Z" + reason: PodCompleted + status: "False" + type: Ready + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:19Z" + reason: PodCompleted + status: "False" + type: ContainersReady + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:33:57Z" + status: "True" + type: PodScheduled + containerStatuses: + - containerID: cri-o://1bf42694692672e65a61edaa8a2dd05838c8419a2ed7456464bd24292d24bba4 + image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + imageID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + lastState: {} + name: sti-build + ready: false + resources: {} + restartCount: 0 + started: false + state: + terminated: + containerID: cri-o://1bf42694692672e65a61edaa8a2dd05838c8419a2ed7456464bd24292d24bba4 + exitCode: 0 + finishedAt: "2025-09-02T07:34:18Z" + reason: Completed + startedAt: "2025-09-02T07:34:01Z" + user: + linux: + gid: 0 + supplementalGroups: + - 0 + uid: 0 + volumeMounts: + - mountPath: /var/lib/kubelet/config.json + name: node-pullsecrets + readOnly: true + recursiveReadOnly: Disabled + - mountPath: /tmp/build + name: buildworkdir + - mountPath: /var/lib/containers/cache + name: buildcachedir + - mountPath: /var/run/secrets/openshift.io/push + name: builder-dockercfg-hcqjh-push + readOnly: true + recursiveReadOnly: Disabled + - mountPath: /var/run/secrets/openshift.io/pull + name: builder-dockercfg-hcqjh-pull + readOnly: true + recursiveReadOnly: Disabled + - mountPath: /var/run/configs/openshift.io/build-system + name: build-system-configs + readOnly: true + recursiveReadOnly: Disabled + - mountPath: /var/run/configs/openshift.io/certs + name: build-ca-bundles + - mountPath: /var/run/configs/openshift.io/pki + name: build-proxy-ca-bundles + - mountPath: /var/lib/containers + name: container-storage-root + - mountPath: /var/run/containers + name: container-storage-run + - mountPath: /var/cache/blobs + name: build-blob-cache + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-nl57l + readOnly: true + recursiveReadOnly: Disabled + hostIP: 10.0.128.6 + hostIPs: + - ip: 10.0.128.6 + initContainerStatuses: + - containerID: cri-o://abc59557f7fcca20ee11fdd9d92babc59d2ef28382ca302b2ed7bebd15b2e2e3 + image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + imageID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + lastState: {} + name: git-clone + ready: true + resources: {} + restartCount: 0 + started: false + state: + terminated: + containerID: cri-o://abc59557f7fcca20ee11fdd9d92babc59d2ef28382ca302b2ed7bebd15b2e2e3 + exitCode: 0 + finishedAt: "2025-09-02T07:33:59Z" + reason: Completed + startedAt: "2025-09-02T07:33:58Z" + user: + linux: + gid: 0 + supplementalGroups: + - 0 + uid: 0 + volumeMounts: + - mountPath: /tmp/build + name: buildworkdir + - mountPath: /var/run/configs/openshift.io/build-system + name: build-system-configs + readOnly: true + recursiveReadOnly: Disabled + - mountPath: /var/run/configs/openshift.io/certs + name: build-ca-bundles + - mountPath: /var/run/configs/openshift.io/pki + name: build-proxy-ca-bundles + - mountPath: /var/cache/blobs + name: build-blob-cache + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-nl57l + readOnly: true + recursiveReadOnly: Disabled + - containerID: cri-o://8747caf1d9f12e7274401c376b7735196e063cbcd1a2487618e7d882abfa11ef + image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + imageID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + lastState: {} + name: manage-dockerfile + ready: true + resources: {} + restartCount: 0 + started: false + state: + terminated: + containerID: cri-o://8747caf1d9f12e7274401c376b7735196e063cbcd1a2487618e7d882abfa11ef + exitCode: 0 + finishedAt: "2025-09-02T07:34:00Z" + reason: Completed + startedAt: "2025-09-02T07:34:00Z" + user: + linux: + gid: 0 + supplementalGroups: + - 0 + uid: 0 + volumeMounts: + - mountPath: /tmp/build + name: buildworkdir + - mountPath: /var/run/configs/openshift.io/build-system + name: build-system-configs + readOnly: true + recursiveReadOnly: Disabled + - mountPath: /var/run/configs/openshift.io/certs + name: build-ca-bundles + - mountPath: /var/run/configs/openshift.io/pki + name: build-proxy-ca-bundles + - mountPath: /var/cache/blobs + name: build-blob-cache + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-nl57l + readOnly: true + recursiveReadOnly: Disabled + phase: Succeeded + podIP: 10.130.2.89 + podIPs: + - ip: 10.130.2.89 + qosClass: BestEffort + startTime: "2025-09-02T07:33:57Z" +- apiVersion: v1 + kind: Pod + metadata: + annotations: + k8s.ovn.org/pod-networks: '{"default":{"ip_addresses":["10.131.1.242/23"],"mac_address":"0a:58:0a:83:01:f2","gateway_ips":["10.131.0.1"],"routes":[{"dest":"10.128.0.0/14","nextHop":"10.131.0.1"},{"dest":"172.30.0.0/16","nextHop":"10.131.0.1"},{"dest":"169.254.0.5/32","nextHop":"10.131.0.1"},{"dest":"100.64.0.0/16","nextHop":"10.131.0.1"}],"ip_address":"10.131.1.242/23","gateway_ip":"10.131.0.1","role":"primary"}}' + k8s.v1.cni.cncf.io/network-status: |- + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.131.1.242" + ], + "mac": "0a:58:0a:83:01:f2", + "default": true, + "dns": {} + }] + openshift.io/scc: restricted-v2 + seccomp.security.alpha.kubernetes.io/pod: runtime/default + security.openshift.io/validated-scc-subject-type: user + creationTimestamp: "2025-09-02T07:34:18Z" + generateName: simple-example-5685685fbb- + generation: 1 + labels: + name: simple-example + pod-template-hash: 5685685fbb + name: simple-example-5685685fbb-qxqdv + namespace: e2e-test-templates-gs774 + ownerReferences: + - apiVersion: apps/v1 + blockOwnerDeletion: true + controller: true + kind: ReplicaSet + name: simple-example-5685685fbb + uid: c86e10f6-afd2-4ba8-8821-30c039d2328f + resourceVersion: "238562" + uid: c28f1bea-1fac-48f5-a85e-90310ab412ce + spec: + containers: + - image: image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90 + imagePullPolicy: IfNotPresent + name: simple-example + ports: + - containerPort: 8080 + protocol: TCP + resources: {} + securityContext: + allowPrivilegeEscalation: false + capabilities: + drop: + - ALL + runAsNonRoot: true + runAsUser: 1019470000 + terminationMessagePath: /dev/termination-log + terminationMessagePolicy: File + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-krrcn + readOnly: true + dnsPolicy: ClusterFirst + enableServiceLinks: true + imagePullSecrets: + - name: default-dockercfg-r2nv8 + nodeName: ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s + preemptionPolicy: PreemptLowerPriority + priority: 0 + restartPolicy: Always + schedulerName: default-scheduler + securityContext: + fsGroup: 1019470000 + seLinuxOptions: + level: s0:c140,c5 + seccompProfile: + type: RuntimeDefault + serviceAccount: default + serviceAccountName: default + terminationGracePeriodSeconds: 30 + tolerations: + - effect: NoExecute + key: node.kubernetes.io/not-ready + operator: Exists + tolerationSeconds: 300 + - effect: NoExecute + key: node.kubernetes.io/unreachable + operator: Exists + tolerationSeconds: 300 + volumes: + - name: kube-api-access-krrcn + projected: + defaultMode: 420 + sources: + - serviceAccountToken: + expirationSeconds: 3607 + path: token + - configMap: + items: + - key: ca.crt + path: ca.crt + name: kube-root-ca.crt + - downwardAPI: + items: + - fieldRef: + apiVersion: v1 + fieldPath: metadata.namespace + path: namespace + - configMap: + items: + - key: service-ca.crt + path: service-ca.crt + name: openshift-service-ca.crt + status: + conditions: + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:34Z" + status: "True" + type: PodReadyToStartContainers + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:18Z" + status: "True" + type: Initialized + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:35:21Z" + message: 'containers with unready status: [simple-example]' + reason: ContainersNotReady + status: "False" + type: Ready + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:35:21Z" + message: 'containers with unready status: [simple-example]' + reason: ContainersNotReady + status: "False" + type: ContainersReady + - lastProbeTime: null + lastTransitionTime: "2025-09-02T07:34:18Z" + status: "True" + type: PodScheduled + containerStatuses: + - containerID: cri-o://4c31bccd7088ed35f911f947addfccedb46621c646944ac7dbeebcbb86481507 + image: image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90 + imageID: image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90 + lastState: + terminated: + containerID: cri-o://4c31bccd7088ed35f911f947addfccedb46621c646944ac7dbeebcbb86481507 + exitCode: 1 + finishedAt: "2025-09-02T07:35:19Z" + reason: Error + startedAt: "2025-09-02T07:35:19Z" + name: simple-example + ready: false + resources: {} + restartCount: 3 + started: false + state: + waiting: + message: back-off 40s restarting failed container=simple-example pod=simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) + reason: CrashLoopBackOff + user: + linux: + gid: 0 + supplementalGroups: + - 0 + - 1019470000 + uid: 1019470000 + volumeMounts: + - mountPath: /var/run/secrets/kubernetes.io/serviceaccount + name: kube-api-access-krrcn + readOnly: true + recursiveReadOnly: Disabled + hostIP: 10.0.128.4 + hostIPs: + - ip: 10.0.128.4 + phase: Running + podIP: 10.131.1.242 + podIPs: + - ip: 10.131.1.242 + qosClass: BestEffort + startTime: "2025-09-02T07:34:18Z" +kind: List +metadata: + resourceVersion: "" +I0902 07:35:51.110273 92773 framework.go:689] Dumping configMap state for namespace e2e-test-templates-gs774 +I0902 07:35:51.110371 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 get configmaps -o yaml' +I0902 07:35:51.246758 92773 framework.go:695] apiVersion: v1 +items: +- apiVersion: v1 + data: + ca.crt: | + -----BEGIN CERTIFICATE----- + MIIDMjCCAhqgAwIBAgIIYfueneIzNZQwDQYJKoZIhvcNAQELBQAwNzESMBAGA1UE + CxMJb3BlbnNoaWZ0MSEwHwYDVQQDExhrdWJlLWFwaXNlcnZlci1sYi1zaWduZXIw + HhcNMjUwOTAyMDU1NzMyWhcNMzUwODMxMDU1NzMyWjA3MRIwEAYDVQQLEwlvcGVu + c2hpZnQxITAfBgNVBAMTGGt1YmUtYXBpc2VydmVyLWxiLXNpZ25lcjCCASIwDQYJ + KoZIhvcNAQEBBQADggEPADCCAQoCggEBAMa/eUVVnVwhwBu0yEPQkAN/2FCdfwY7 + ZIE6lh3uZuwMoK/YjCYd4G1olr7yNhLkLOZ+PgJRes7RulJNbSSoiolziHMDlBd3 + Ur5RcnJRQGQgdFcmJk1COQr/iVp/wHG8X3MeyydVpWLI6KY4gqWUMosxX9XZyo0G + NFqHn6AYwfnYzfXOEdT23yITA6tdsRSnLsCZIPXKPLb80dHigXbqkrA7yPGmpSQb + niaKlgGAfhxEQLt3LNzXQpEmOry92CIruW5SJZGL+p6dEn7jpoaM1cYN2/8KRwVs + oSOg5Y82rQW9pl7IXmeME2cN1Tws9o6HCww3GQE0kdZkxt2WYTrwsUcCAwEAAaNC + MEAwDgYDVR0PAQH/BAQDAgKkMA8GA1UdEwEB/wQFMAMBAf8wHQYDVR0OBBYEFHzX + 5YvbHUcTp8xUVV6R7D31vBsFMA0GCSqGSIb3DQEBCwUAA4IBAQAWxjCuMmt+2uyo + ymLIemWrkALED66MaJuIDatZ3R+uwGOmLzESB7bLXspfsK1/kcv5bVBilwRmhA9r + yRS+Vh/PyU4SGFBOJFeABfYkQLyvmr4GyL4e37QhRZTBtZp4yFFJKXKN8XIa/1jd + 2uk1YKxFaT5kO4FOFuUPMYWaIn/PvDzWXYLz+OZasrh2/v6Yb5jt/uHMCOmWe3vf + vvOE0Ta2rKFWqst+DVInjx5iugCT2W2m0W6mga1D7k/VjJ8FO+Vr2u5Hpn687Yj3 + BeQc5ky0H+VrI86PsQpoosaRVeLdnK6Vz1B4xhuA97qSd+77W5xVnMsSGefaRxPh + ttRi3yWH + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIDQDCCAiigAwIBAgIIBMLS9pxKKCQwDQYJKoZIhvcNAQELBQAwPjESMBAGA1UE + CxMJb3BlbnNoaWZ0MSgwJgYDVQQDEx9rdWJlLWFwaXNlcnZlci1sb2NhbGhvc3Qt + c2lnbmVyMB4XDTI1MDkwMjA1NTczMVoXDTM1MDgzMTA1NTczMVowPjESMBAGA1UE + CxMJb3BlbnNoaWZ0MSgwJgYDVQQDEx9rdWJlLWFwaXNlcnZlci1sb2NhbGhvc3Qt + c2lnbmVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAyBjYt9AA+P1h + P9cKLHCWNB/dZaJAR151sxRKwA/yphnnWAnNN83NQ3YP/MsUQFzN+8SplJ4R7UpM + jrrRPqEqR3hkb6H0PTW9WtT2vRIlsa7dHjprbB/fhVNoTk2MhLPOGgA/O3mv/Amw + s04li4R62OdI0o34a/7t0Zwp7UUJyz3AobzljnbGP4eCWj6wcJMzRrV+syTwZQ2V + YJ0LXS7qTEVqfuKYHvyMLjvscOut4DuW1mp/zBwmXwlJLrj+ZCLbXp/EVs/lmCeC + gTlqUyhTkjxpCdauK7tTwusLkmAR9Yr3QftTUZEoEBDZRaYEK06vX+6f4yJiLK/e + H+QIv8nscwIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAqQwDwYDVR0TAQH/BAUwAwEB + /zAdBgNVHQ4EFgQUXuWKs29oR0JWvbcWaPPpEuVwWxIwDQYJKoZIhvcNAQELBQAD + ggEBAD31SiYlji/WMkJi4tqXRPdOPHvb7R8qJ4NSe6zikT0mrsnYc7Ia9jMEaPx4 + 0iAILrNXc8LSz//2bndWRiC1MVFcZraAAbPsSYb+8zL48rxrF0PUrUw7RGoX+hlL + ZWHpnDPz7q88QSTnbZo99Y2iJuzJFLVUb6Yy/oMMferfuD9e2nb4mhmiPLzjQ7Bc + Ww2GZucWG1owQ1z052/vNtgwutqtIF4lWw9W5szUb3DGshENQe3vF7cF94fmt5CZ + /Yow0+Ad/oTfiSBGXa+92vsLH7QChfGbVHPlC+2Zm51EOgyJ6E9vyUfvVwxWFGYI + bTWkXaKqIweXjmGBf8haWhmFjqQ= + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIDTDCCAjSgAwIBAgIIRr0w7ZTGGWEwDQYJKoZIhvcNAQELBQAwRDESMBAGA1UE + CxMJb3BlbnNoaWZ0MS4wLAYDVQQDEyVrdWJlLWFwaXNlcnZlci1zZXJ2aWNlLW5l + dHdvcmstc2lnbmVyMB4XDTI1MDkwMjA1NTczMloXDTM1MDgzMTA1NTczMlowRDES + MBAGA1UECxMJb3BlbnNoaWZ0MS4wLAYDVQQDEyVrdWJlLWFwaXNlcnZlci1zZXJ2 + aWNlLW5ldHdvcmstc2lnbmVyMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKC + AQEA59srNQ4cK/Qr7ueur7/OKZyl2XLycA7zd7Dzs5dE6SM/dVs1FSjfJ/9NUTtk + 3JYzVLAz/9Jp557HX7ZZiifPVwWEgbmnCNGKXzpXczdxl5HsC4xrle9BWTg1NbNB + TYznY/TMY50OzZcfTlDiWGNPgNpI+5nqqRUDfFq2DDBeQv5bc1gpx8hDFveCwWBR + 0xaCF+W1E9aU63IdNmw9lzLPVX3v5u3Io6OIzaRumef+EpiCUGJgOQKOeh5H21dg + dVM3bvlE2SsefwAqSRidBLFx90aIImAX3ykkdGxJH1LFodWl4xiiDJCaLBrVIQ4/ + 25IhtM0UwjBnLBOpEW81w0I6FwIDAQABo0IwQDAOBgNVHQ8BAf8EBAMCAqQwDwYD + VR0TAQH/BAUwAwEB/zAdBgNVHQ4EFgQUhBNEXoGIEUinNKk6Hpt2slDqIG4wDQYJ + KoZIhvcNAQELBQADggEBAJRG+Ou7FRkv1JRLVFH78ThyDKDKdzU0T23rOeKE/8Q/ + snAXTlMyzcWa7Bo+GrkVMKg3ZWV9r8Um9SyUD5ycPTLeCFiEwiPkX35ik+qoQdwy + DPqGjY+akGO5TFMsxXmhUHyv0jPWf7dychU2b2EiInPlVu7bO2AcsZ/sBOu//tje + UCB8MESnJnMJn925kVRAhvMxjdgHZv6ZRv1erAPzVKKGrXO3G2dcsIjXsb1Mab9z + OTdIMKnEfcGKrhCOP9Jd5tDRLcmfmMfynJSWaw9/I2n+YNsvGVGhqJkxO8WQTuOQ + TqXGMd6paZp/bmcl0pq5ntng52ybXcStX4w6n7xmLGc= + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIDlzCCAn+gAwIBAgIIW1wEV3OJq4MwDQYJKoZIhvcNAQELBQAwWTFXMFUGA1UE + AwxOb3BlbnNoaWZ0LWt1YmUtYXBpc2VydmVyLW9wZXJhdG9yX2xvY2FsaG9zdC1y + ZWNvdmVyeS1zZXJ2aW5nLXNpZ25lckAxNzU2NzkzNjAwMB4XDTI1MDkwMjA2MTMx + OVoXDTM1MDgzMTA2MTMyMFowWTFXMFUGA1UEAwxOb3BlbnNoaWZ0LWt1YmUtYXBp + c2VydmVyLW9wZXJhdG9yX2xvY2FsaG9zdC1yZWNvdmVyeS1zZXJ2aW5nLXNpZ25l + ckAxNzU2NzkzNjAwMIIBIjANBgkqhkiG9w0BAQEFAAOCAQ8AMIIBCgKCAQEAoDMw + s3aYGKqDvv/BYQ0DdKdepr37xGSpEdhuHKZkJtAu5hVJm+DFoogHI6yYs0LdyRxn + 2omx6HAIdpWqLXjZ4PyppubyvlSx+RXRHgCs6x8NrKMeVoimzHgIUoXzDSB/8Od2 + XT7P2If1kUvQronO3gJk8vZ3Se11uMEHBC6SlQx2Zz81+htUQmXeMnSGLzj5eHbA + qrZz0dg8s09MdGG9tnHwKmEdkDsQR9BYT/IUy59fgD8BqsOkRH8wYg8fR/qhdOeZ + 5ePpw+akzCMYPpsmwk4gLYO6HN7mqSelXCawHrT4y8rruful1rrlH7s4/ccFnrZy + /aHnDwa5kqciXLym0QIDAQABo2MwYTAOBgNVHQ8BAf8EBAMCAqQwDwYDVR0TAQH/ + BAUwAwEB/zAdBgNVHQ4EFgQUjWZQX0CI7f98WzORz7knb2qS+UYwHwYDVR0jBBgw + FoAUjWZQX0CI7f98WzORz7knb2qS+UYwDQYJKoZIhvcNAQELBQADggEBAA01Vdq+ + /aTK0BMCj4+Ch1fYROOzLitzelJhdQ3N3p0n6Q0lVJeyoKZhXQjM0b2TD9WY9h3h + tXbVoJsvozJCXC0FXliEhmgORjb/V44IwuBVpoIRfHShSLRqnM1LfOmhl+bbV3JV + xfVrfIolmUzp8wKtO113cVnXstXSsbCe1HXQLL1IboH7xcNZv2c3Eh3knKZq9/U/ + gLUE88xKslYgaYLmaImeQ2VDCN7nzJslHjcOPzIhnyctHiETPR40V/4Auh15c39x + dCT+W6CbWJ8Gzozv6XaybR+R/hDfqv2qjwBESu3rAa1G9uUDnFjXwLGz7cwpDk1d + a3DlQCOIVd4I46o= + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIDsTCCApmgAwIBAgIIRuXEkVl6ehswDQYJKoZIhvcNAQELBQAwJjEkMCIGA1UE + AwwbaW5ncmVzcy1vcGVyYXRvckAxNzU2NzkzNjQ3MB4XDTI1MDkwMjA2MTQwOFoX + DTI3MDkwMjA2MTQwOVowSDFGMEQGA1UEAww9Ki5hcHBzLmNpLW9wLTBrMHFpYnBz + LTg3MWRkLm9yaWdpbi1jaS1pbnQtZ2NlLmRldi5yaGNsb3VkLmNvbTCCASIwDQYJ + KoZIhvcNAQEBBQADggEPADCCAQoCggEBANqtuKmevAGiKaAmAis6XxYE329smDFP + rBuHqdomLjcZ87ziJrABKtXleOkj0QFk7yX6iWcKNVReEPzBTZWBCusN0SyNWEAI + jugmQ/cZnQOCxBhTOgK6AVdM0f23UoY3dtvMdl0x/3xPhnoIIiJ59MqXoWPr6y3I + +jYkZxAPYNoJaRkeJ6ZwGb/FCqG+b8f3bdoc+dLQcb1ImaRw54Sc4wY2bdaP5FpZ + 5DhhqoTpLtDphadNG0AFDInXoDmX8lVeUlr3oqoQ/ne9eLllWPO9qfQHdu+2E5uQ + WRrNaXwEe/48sGh/fv2helBkF7TPFdkZ0G9haseuaNJesF8/JvP7mzcCAwEAAaOB + wDCBvTAOBgNVHQ8BAf8EBAMCBaAwEwYDVR0lBAwwCgYIKwYBBQUHAwEwDAYDVR0T + AQH/BAIwADAdBgNVHQ4EFgQUpayk4voLmdQMjtdM3gcFs8uaK00wHwYDVR0jBBgw + FoAU8cYGJG3m1fAr/7RIZelpjvmtPQcwSAYDVR0RBEEwP4I9Ki5hcHBzLmNpLW9w + LTBrMHFpYnBzLTg3MWRkLm9yaWdpbi1jaS1pbnQtZ2NlLmRldi5yaGNsb3VkLmNv + bTANBgkqhkiG9w0BAQsFAAOCAQEA1ZcmIEMM3u6QuqmcsZVynBwki8AuKBwwQN/5 + VmDpiqBBb7ZEZza/NnQF8Y79MrDYH41ipmGMRQFRHrW9ZhYZyDzeZ8hpJyqOm6hH + RvgbydaXIAjZBrQGvnJC30hbq+gSmL6YZjtSGtTyr1sriWpmg7VcHqaHFO6guK/y + djw5oY7nsAjAsD16JB/WBaiHCoTIFOqdow3gndynES2MukH7ghZf4DmKEsNAofI4 + g+EZanwf6Rb/rbeX1Epnkhsi3+TCY4uoMeAuyfuWLjQJXYs3QMzTdAbZBN4OqCKk + sGekQl+eR3FjlZnMD8V4oq70W99RjE0jrUQmv2xm8rmi2AOxqA== + -----END CERTIFICATE----- + -----BEGIN CERTIFICATE----- + MIIDDDCCAfSgAwIBAgIBATANBgkqhkiG9w0BAQsFADAmMSQwIgYDVQQDDBtpbmdy + ZXNzLW9wZXJhdG9yQDE3NTY3OTM2NDcwHhcNMjUwOTAyMDYxNDA2WhcNMjcwOTAy + MDYxNDA3WjAmMSQwIgYDVQQDDBtpbmdyZXNzLW9wZXJhdG9yQDE3NTY3OTM2NDcw + ggEiMA0GCSqGSIb3DQEBAQUAA4IBDwAwggEKAoIBAQDYGVYbgm8C5Gq1Tr+vzCsz + LhKOJ7Z85fdnz/qcmvYcuCzLztWoJ6VsBTwe3NCEYTEqYB7CE3RAmyvzP4UqG+FU + K1It/bEBw6WiciWu+UXPvROYLbtPBEVzPCNVowRQpQ4wyWVPJfqvzEqz/Jk2/cZG + UsOQ3m5FklHkZwKEmaUlv9htDpr1j0VvAVTxwx2vGkHd3hHzMeKPnFgyfI4kTzjp + gefq7iNPkOEVnCgK97y+JvRgnsce/nEomNO0VtOHMvMEKazmenc7JSxKaopERngl + 9jVAeH1jkilbXJ3BK4EAFvoUTpB9HqIGWEfpeQAfgNudLKVzBMkppuXSsLZIUp8n + AgMBAAGjRTBDMA4GA1UdDwEB/wQEAwICpDASBgNVHRMBAf8ECDAGAQH/AgEAMB0G + A1UdDgQWBBTxxgYkbebV8Cv/tEhl6WmO+a09BzANBgkqhkiG9w0BAQsFAAOCAQEA + ier81ycuR08PlAeABaPnv+bj+BvkL2bFV37Fq+Sc2UN+doQhl9/GXzVVGLkUiAtR + zXdhysmJTXZJuolFhy0AyGgU1eRjfkti4MrXZPJbLazKL7rkU7aY0FdwcTebFZ1c + UscJn4Sm6hEB8aHotBoacSBU4bizKqTry5+nVN8MupE1IsKBlu78f4KkkpKLkhv7 + YDuDParJ8lLnB08FzcJ2GpJYun0QqglKAutSekIEOfnxCqnbtojbrXYeIbs95Ko1 + tnglE6wxT3GpST2RxY8Ia1YR9ZViAmEKEzCWSkYX0VYXm808UdW9wjOUM8BQdKJx + Qw3f77tsUMtj+qbHTVjt0g== + -----END CERTIFICATE----- + kind: ConfigMap + metadata: + annotations: + kubernetes.io/description: Contains a CA bundle that can be used to verify the + kube-apiserver when using internal endpoints such as the internal service + IP or kubernetes.default.svc. No other usage is guaranteed across distributions + of Kubernetes clusters. + creationTimestamp: "2025-09-02T07:33:52Z" + name: kube-root-ca.crt + namespace: e2e-test-templates-gs774 + resourceVersion: "224346" + uid: 77271d55-aef2-4ce9-8192-7bb8f224613e +- apiVersion: v1 + data: + service-ca.crt: | + -----BEGIN CERTIFICATE----- + MIIDUTCCAjmgAwIBAgIIEZuUz+GamwkwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UE + Awwrb3BlbnNoaWZ0LXNlcnZpY2Utc2VydmluZy1zaWduZXJAMTc1Njc5MzU5ODAe + Fw0yNTA5MDIwNjEzMThaFw0yNzExMDEwNjEzMTlaMDYxNDAyBgNVBAMMK29wZW5z + aGlmdC1zZXJ2aWNlLXNlcnZpbmctc2lnbmVyQDE3NTY3OTM1OTgwggEiMA0GCSqG + SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCpmrC4bpRp6fntuAAs0BOSIoyE4F8eipBO + S6hs8Spa75cGcLgbgVFTO44kcbBvxKkc+GQSrApiRMqeLVAhQkmw+p44njAUKmZe + rsKuSpNMqbroCCepkecmdKL0iQ/gK/EEr+1bRTdvBG4Dt22WqkWOBYMCUA6nrcHK + QuytgMiwh4tos2+rJbju1FVrDGw55s69UUMUaGwv1/jrNIrp52KXZHltBB6NGrNP + DegeqCQVi51sGJU7t6DSyLiKa4YqI6lkRRn+hvlATFeVU1LypJ86JISjT2KYEcCv + Z3b6fNKO7lY++u+bgvTI7cCsqM9wtWmq9JdYpJ9LcZP7/xw72DTfAgMBAAGjYzBh + MA4GA1UdDwEB/wQEAwICpDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTtTQRO + ueVeHOr0lmnbkqieMFLc7DAfBgNVHSMEGDAWgBTtTQROueVeHOr0lmnbkqieMFLc + 7DANBgkqhkiG9w0BAQsFAAOCAQEAn9yWvUWwr21kDgU76RdMB/MWGlD+raq93a92 + 4OQGyH/1gxamCHtvcYF4cMmoG+KvzEF/tBsII92E9v5GDjw9d8+4aGRiG2HRp1h5 + I4Lq4sp4sRhbTYH9EUTw4+VUJU3ag4yiZHpCgYTMB4a6ETOGiZPmhbPYOWmOKxMi + 9W6aaCkMnFJn9nu1c9M2JVVSLs9kVQkH8Us5YHCQAAdEP3X4fBsUeJY1OHD0WYci + RjD+EVwknDrX30vkXnBBlMYXyEw1NmUH7VQnvNIIaasmOu4x9zHEfm45Uqf0Q4eA + zQPpv+BcZ+V/ZNGZq1HXZzIId2RZ8qIiyMAN8mTyqGTQfMpC0A== + -----END CERTIFICATE----- + kind: ConfigMap + metadata: + annotations: + service.beta.openshift.io/inject-cabundle: "true" + creationTimestamp: "2025-09-02T07:33:52Z" + name: openshift-service-ca.crt + namespace: e2e-test-templates-gs774 + resourceVersion: "224355" + uid: bd8f5a22-e47a-477e-b2f1-9ce55319fc9b +- apiVersion: v1 + data: + service-ca.crt: | + -----BEGIN CERTIFICATE----- + MIIDUTCCAjmgAwIBAgIIEZuUz+GamwkwDQYJKoZIhvcNAQELBQAwNjE0MDIGA1UE + Awwrb3BlbnNoaWZ0LXNlcnZpY2Utc2VydmluZy1zaWduZXJAMTc1Njc5MzU5ODAe + Fw0yNTA5MDIwNjEzMThaFw0yNzExMDEwNjEzMTlaMDYxNDAyBgNVBAMMK29wZW5z + aGlmdC1zZXJ2aWNlLXNlcnZpbmctc2lnbmVyQDE3NTY3OTM1OTgwggEiMA0GCSqG + SIb3DQEBAQUAA4IBDwAwggEKAoIBAQCpmrC4bpRp6fntuAAs0BOSIoyE4F8eipBO + S6hs8Spa75cGcLgbgVFTO44kcbBvxKkc+GQSrApiRMqeLVAhQkmw+p44njAUKmZe + rsKuSpNMqbroCCepkecmdKL0iQ/gK/EEr+1bRTdvBG4Dt22WqkWOBYMCUA6nrcHK + QuytgMiwh4tos2+rJbju1FVrDGw55s69UUMUaGwv1/jrNIrp52KXZHltBB6NGrNP + DegeqCQVi51sGJU7t6DSyLiKa4YqI6lkRRn+hvlATFeVU1LypJ86JISjT2KYEcCv + Z3b6fNKO7lY++u+bgvTI7cCsqM9wtWmq9JdYpJ9LcZP7/xw72DTfAgMBAAGjYzBh + MA4GA1UdDwEB/wQEAwICpDAPBgNVHRMBAf8EBTADAQH/MB0GA1UdDgQWBBTtTQRO + ueVeHOr0lmnbkqieMFLc7DAfBgNVHSMEGDAWgBTtTQROueVeHOr0lmnbkqieMFLc + 7DANBgkqhkiG9w0BAQsFAAOCAQEAn9yWvUWwr21kDgU76RdMB/MWGlD+raq93a92 + 4OQGyH/1gxamCHtvcYF4cMmoG+KvzEF/tBsII92E9v5GDjw9d8+4aGRiG2HRp1h5 + I4Lq4sp4sRhbTYH9EUTw4+VUJU3ag4yiZHpCgYTMB4a6ETOGiZPmhbPYOWmOKxMi + 9W6aaCkMnFJn9nu1c9M2JVVSLs9kVQkH8Us5YHCQAAdEP3X4fBsUeJY1OHD0WYci + RjD+EVwknDrX30vkXnBBlMYXyEw1NmUH7VQnvNIIaasmOu4x9zHEfm45Uqf0Q4eA + zQPpv+BcZ+V/ZNGZq1HXZzIId2RZ8qIiyMAN8mTyqGTQfMpC0A== + -----END CERTIFICATE----- + kind: ConfigMap + metadata: + creationTimestamp: "2025-09-02T07:33:57Z" + name: simple-example-1-ca + namespace: e2e-test-templates-gs774 + ownerReferences: + - apiVersion: v1 + kind: Pod + name: simple-example-1-build + uid: 21923385-3307-453c-b5b2-2d42c44cfc1a + resourceVersion: "224873" + uid: fafeb4f3-4b0d-49ca-9d28-20855c07e2f1 +- apiVersion: v1 + data: + ca-bundle.crt: "" + kind: ConfigMap + metadata: + creationTimestamp: "2025-09-02T07:33:57Z" + name: simple-example-1-global-ca + namespace: e2e-test-templates-gs774 + ownerReferences: + - apiVersion: v1 + kind: Pod + name: simple-example-1-build + uid: 21923385-3307-453c-b5b2-2d42c44cfc1a + resourceVersion: "224876" + uid: 9b1b5c09-3375-41d2-b4e2-03ea152d64c8 +- apiVersion: v1 + kind: ConfigMap + metadata: + creationTimestamp: "2025-09-02T07:33:57Z" + name: simple-example-1-sys-config + namespace: e2e-test-templates-gs774 + ownerReferences: + - apiVersion: v1 + kind: Pod + name: simple-example-1-build + uid: 21923385-3307-453c-b5b2-2d42c44cfc1a + resourceVersion: "224874" + uid: 1611afdc-c031-4eca-9f09-95b924660241 +kind: List +metadata: + resourceVersion: "" +I0902 07:35:51.263592 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 describe pod/simple-example-1-build -n e2e-test-templates-gs774' +I0902 07:35:51.436899 92773 framework.go:647] Describing pod "simple-example-1-build" +Name: simple-example-1-build +Namespace: e2e-test-templates-gs774 +Priority: 0 +Service Account: builder +Node: ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8/10.0.128.6 +Start Time: Tue, 02 Sep 2025 07:33:57 +0000 +Labels: openshift.io/build.name=simple-example-1 +Annotations: k8s.ovn.org/pod-networks: + {"default":{"ip_addresses":["10.130.2.89/23"],"mac_address":"0a:58:0a:82:02:59","gateway_ips":["10.130.2.1"],"routes":[{"dest":"10.128.0.0... + k8s.v1.cni.cncf.io/network-status: + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.130.2.89" + ], + "mac": "0a:58:0a:82:02:59", + "default": true, + "dns": {} + }] + openshift.io/build.name: simple-example-1 + openshift.io/scc: privileged + security.openshift.io/validated-scc-subject-type: user +Status: Succeeded +IP: 10.130.2.89 +IPs: + IP: 10.130.2.89 +Controlled By: Build/simple-example-1 +Init Containers: + git-clone: + Container ID: cri-o://abc59557f7fcca20ee11fdd9d92babc59d2ef28382ca302b2ed7bebd15b2e2e3 + Image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + Image ID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + Port: + Host Port: + SeccompProfile: RuntimeDefault + Args: + openshift-git-clone + --v=0 + State: Terminated + Reason: Completed + Exit Code: 0 + Started: Tue, 02 Sep 2025 07:33:58 +0000 + Finished: Tue, 02 Sep 2025 07:33:59 +0000 + Ready: True + Restart Count: 0 + Environment: + BUILD: {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"simple-example-1","namespace":"e2e-test-templates-gs774","uid":"eab76862-98d2-4c10-9648-43e1c9fb40cf","resourceVersion":"224849","generation":1,"creationTimestamp":"2025-09-02T07:33:57Z","labels":{"buildconfig":"simple-example","openshift.io/build-config.name":"simple-example","openshift.io/build.start-policy":"Serial","template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"},"annotations":{"openshift.io/build-config.name":"simple-example","openshift.io/build.number":"1"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"simple-example","uid":"80d5203b-1976-4341-ae0c-a3194258948c","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2025-09-02T07:33:57Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{},"f:template.openshift.io/template-instance-owner":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"80d5203b-1976-4341-ae0c-a3194258948c\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:serviceAccount":{},"f:source":{"f:git":{".":{},"f:uri":{}},"f:type":{}},"f:strategy":{"f:sourceStrategy":{".":{},"f:from":{}},"f:type":{}},"f:triggeredBy":{}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Git","git":{"uri":"https://github.com/sclorg/nodejs-ex"}},"strategy":{"type":"Source","sourceStrategy":{"from":{"kind":"DockerImage","name":"quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE"},"pullSecret":{"name":"builder-dockercfg-hcqjh"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest"},"pushSecret":{"name":"builder-dockercfg-hcqjh"}},"resources":{},"postCommit":{},"nodeSelector":null,"triggeredBy":[{"message":"Build configuration change"}]},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest","config":{"kind":"BuildConfig","namespace":"e2e-test-templates-gs774","name":"simple-example"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2025-09-02T07:33:57Z","lastTransitionTime":"2025-09-02T07:33:57Z"}]}} + + LANG: C.utf8 + SOURCE_REPOSITORY: https://github.com/sclorg/nodejs-ex + SOURCE_URI: https://github.com/sclorg/nodejs-ex + ALLOWED_UIDS: 1- + DROP_CAPS: KILL,MKNOD,SETGID,SETUID + BUILD_REGISTRIES_CONF_PATH: /var/run/configs/openshift.io/build-system/registries.conf + BUILD_REGISTRIES_DIR_PATH: /var/run/configs/openshift.io/build-system/registries.d + BUILD_SIGNATURE_POLICY_PATH: /var/run/configs/openshift.io/build-system/policy.json + BUILD_STORAGE_CONF_PATH: /var/run/configs/openshift.io/build-system/storage.conf + BUILD_BLOBCACHE_DIR: /var/cache/blobs + Mounts: + /tmp/build from buildworkdir (rw) + /var/cache/blobs from build-blob-cache (rw) + /var/run/configs/openshift.io/build-system from build-system-configs (ro) + /var/run/configs/openshift.io/certs from build-ca-bundles (rw) + /var/run/configs/openshift.io/pki from build-proxy-ca-bundles (rw) + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-nl57l (ro) + manage-dockerfile: + Container ID: cri-o://8747caf1d9f12e7274401c376b7735196e063cbcd1a2487618e7d882abfa11ef + Image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + Image ID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + Port: + Host Port: + SeccompProfile: RuntimeDefault + Args: + openshift-manage-dockerfile + --v=0 + State: Terminated + Reason: Completed + Exit Code: 0 + Started: Tue, 02 Sep 2025 07:34:00 +0000 + Finished: Tue, 02 Sep 2025 07:34:00 +0000 + Ready: True + Restart Count: 0 + Environment: + BUILD: {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"simple-example-1","namespace":"e2e-test-templates-gs774","uid":"eab76862-98d2-4c10-9648-43e1c9fb40cf","resourceVersion":"224849","generation":1,"creationTimestamp":"2025-09-02T07:33:57Z","labels":{"buildconfig":"simple-example","openshift.io/build-config.name":"simple-example","openshift.io/build.start-policy":"Serial","template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"},"annotations":{"openshift.io/build-config.name":"simple-example","openshift.io/build.number":"1"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"simple-example","uid":"80d5203b-1976-4341-ae0c-a3194258948c","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2025-09-02T07:33:57Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{},"f:template.openshift.io/template-instance-owner":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"80d5203b-1976-4341-ae0c-a3194258948c\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:serviceAccount":{},"f:source":{"f:git":{".":{},"f:uri":{}},"f:type":{}},"f:strategy":{"f:sourceStrategy":{".":{},"f:from":{}},"f:type":{}},"f:triggeredBy":{}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Git","git":{"uri":"https://github.com/sclorg/nodejs-ex"}},"strategy":{"type":"Source","sourceStrategy":{"from":{"kind":"DockerImage","name":"quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE"},"pullSecret":{"name":"builder-dockercfg-hcqjh"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest"},"pushSecret":{"name":"builder-dockercfg-hcqjh"}},"resources":{},"postCommit":{},"nodeSelector":null,"triggeredBy":[{"message":"Build configuration change"}]},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest","config":{"kind":"BuildConfig","namespace":"e2e-test-templates-gs774","name":"simple-example"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2025-09-02T07:33:57Z","lastTransitionTime":"2025-09-02T07:33:57Z"}]}} + + LANG: C.utf8 + SOURCE_REPOSITORY: https://github.com/sclorg/nodejs-ex + SOURCE_URI: https://github.com/sclorg/nodejs-ex + ALLOWED_UIDS: 1- + DROP_CAPS: KILL,MKNOD,SETGID,SETUID + BUILD_REGISTRIES_CONF_PATH: /var/run/configs/openshift.io/build-system/registries.conf + BUILD_REGISTRIES_DIR_PATH: /var/run/configs/openshift.io/build-system/registries.d + BUILD_SIGNATURE_POLICY_PATH: /var/run/configs/openshift.io/build-system/policy.json + BUILD_STORAGE_CONF_PATH: /var/run/configs/openshift.io/build-system/storage.conf + BUILD_BLOBCACHE_DIR: /var/cache/blobs + Mounts: + /tmp/build from buildworkdir (rw) + /var/cache/blobs from build-blob-cache (rw) + /var/run/configs/openshift.io/build-system from build-system-configs (ro) + /var/run/configs/openshift.io/certs from build-ca-bundles (rw) + /var/run/configs/openshift.io/pki from build-proxy-ca-bundles (rw) + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-nl57l (ro) +Containers: + sti-build: + Container ID: cri-o://1bf42694692672e65a61edaa8a2dd05838c8419a2ed7456464bd24292d24bba4 + Image: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + Image ID: quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1 + Port: + Host Port: + SeccompProfile: Unconfined + Args: + openshift-sti-build + --v=0 + State: Terminated + Reason: Completed + Exit Code: 0 + Started: Tue, 02 Sep 2025 07:34:01 +0000 + Finished: Tue, 02 Sep 2025 07:34:18 +0000 + Ready: False + Restart Count: 0 + Environment: + BUILD: {"kind":"Build","apiVersion":"build.openshift.io/v1","metadata":{"name":"simple-example-1","namespace":"e2e-test-templates-gs774","uid":"eab76862-98d2-4c10-9648-43e1c9fb40cf","resourceVersion":"224849","generation":1,"creationTimestamp":"2025-09-02T07:33:57Z","labels":{"buildconfig":"simple-example","openshift.io/build-config.name":"simple-example","openshift.io/build.start-policy":"Serial","template.openshift.io/template-instance-owner":"c8510822-8429-4ae2-b925-3b711640ab94"},"annotations":{"openshift.io/build-config.name":"simple-example","openshift.io/build.number":"1"},"ownerReferences":[{"apiVersion":"build.openshift.io/v1","kind":"BuildConfig","name":"simple-example","uid":"80d5203b-1976-4341-ae0c-a3194258948c","controller":true}],"managedFields":[{"manager":"openshift-apiserver","operation":"Update","apiVersion":"build.openshift.io/v1","time":"2025-09-02T07:33:57Z","fieldsType":"FieldsV1","fieldsV1":{"f:metadata":{"f:annotations":{".":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.number":{}},"f:labels":{".":{},"f:buildconfig":{},"f:openshift.io/build-config.name":{},"f:openshift.io/build.start-policy":{},"f:template.openshift.io/template-instance-owner":{}},"f:ownerReferences":{".":{},"k:{\"uid\":\"80d5203b-1976-4341-ae0c-a3194258948c\"}":{}}},"f:spec":{"f:output":{"f:to":{}},"f:serviceAccount":{},"f:source":{"f:git":{".":{},"f:uri":{}},"f:type":{}},"f:strategy":{"f:sourceStrategy":{".":{},"f:from":{}},"f:type":{}},"f:triggeredBy":{}},"f:status":{"f:conditions":{".":{},"k:{\"type\":\"New\"}":{".":{},"f:lastTransitionTime":{},"f:lastUpdateTime":{},"f:status":{},"f:type":{}}},"f:config":{},"f:phase":{}}}}]},"spec":{"serviceAccount":"builder","source":{"type":"Git","git":{"uri":"https://github.com/sclorg/nodejs-ex"}},"strategy":{"type":"Source","sourceStrategy":{"from":{"kind":"DockerImage","name":"quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE"},"pullSecret":{"name":"builder-dockercfg-hcqjh"}}},"output":{"to":{"kind":"DockerImage","name":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest"},"pushSecret":{"name":"builder-dockercfg-hcqjh"}},"resources":{},"postCommit":{},"nodeSelector":null,"triggeredBy":[{"message":"Build configuration change"}]},"status":{"phase":"New","outputDockerImageReference":"image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest","config":{"kind":"BuildConfig","namespace":"e2e-test-templates-gs774","name":"simple-example"},"output":{},"conditions":[{"type":"New","status":"True","lastUpdateTime":"2025-09-02T07:33:57Z","lastTransitionTime":"2025-09-02T07:33:57Z"}]}} + + LANG: C.utf8 + SOURCE_REPOSITORY: https://github.com/sclorg/nodejs-ex + SOURCE_URI: https://github.com/sclorg/nodejs-ex + ALLOWED_UIDS: 1- + DROP_CAPS: KILL,MKNOD,SETGID,SETUID + PUSH_DOCKERCFG_PATH: /var/run/secrets/openshift.io/push + PULL_DOCKERCFG_PATH: /var/run/secrets/openshift.io/pull + BUILD_REGISTRIES_CONF_PATH: /var/run/configs/openshift.io/build-system/registries.conf + BUILD_REGISTRIES_DIR_PATH: /var/run/configs/openshift.io/build-system/registries.d + BUILD_SIGNATURE_POLICY_PATH: /var/run/configs/openshift.io/build-system/policy.json + BUILD_STORAGE_CONF_PATH: /var/run/configs/openshift.io/build-system/storage.conf + BUILD_BLOBCACHE_DIR: /var/cache/blobs + Mounts: + /tmp/build from buildworkdir (rw) + /var/cache/blobs from build-blob-cache (rw) + /var/lib/containers from container-storage-root (rw) + /var/lib/containers/cache from buildcachedir (rw) + /var/lib/kubelet/config.json from node-pullsecrets (ro) + /var/run/configs/openshift.io/build-system from build-system-configs (ro) + /var/run/configs/openshift.io/certs from build-ca-bundles (rw) + /var/run/configs/openshift.io/pki from build-proxy-ca-bundles (rw) + /var/run/containers from container-storage-run (rw) + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-nl57l (ro) + /var/run/secrets/openshift.io/pull from builder-dockercfg-hcqjh-pull (ro) + /var/run/secrets/openshift.io/push from builder-dockercfg-hcqjh-push (ro) +Conditions: + Type Status + PodReadyToStartContainers False + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + node-pullsecrets: + Type: HostPath (bare host directory volume) + Path: /var/lib/kubelet/config.json + HostPathType: File + buildcachedir: + Type: HostPath (bare host directory volume) + Path: /var/lib/containers/cache + HostPathType: + buildworkdir: + Type: EmptyDir (a temporary directory that shares a pod's lifetime) + Medium: + SizeLimit: + builder-dockercfg-hcqjh-push: + Type: Secret (a volume populated by a Secret) + SecretName: builder-dockercfg-hcqjh + Optional: false + builder-dockercfg-hcqjh-pull: + Type: Secret (a volume populated by a Secret) + SecretName: builder-dockercfg-hcqjh + Optional: false + build-system-configs: + Type: ConfigMap (a volume populated by a ConfigMap) + Name: simple-example-1-sys-config + Optional: false + build-ca-bundles: + Type: ConfigMap (a volume populated by a ConfigMap) + Name: simple-example-1-ca + Optional: false + build-proxy-ca-bundles: + Type: ConfigMap (a volume populated by a ConfigMap) + Name: simple-example-1-global-ca + Optional: false + container-storage-root: + Type: EmptyDir (a temporary directory that shares a pod's lifetime) + Medium: + SizeLimit: + container-storage-run: + Type: EmptyDir (a temporary directory that shares a pod's lifetime) + Medium: + SizeLimit: + build-blob-cache: + Type: EmptyDir (a temporary directory that shares a pod's lifetime) + Medium: + SizeLimit: + kube-api-access-nl57l: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + Optional: false + DownwardAPI: true + ConfigMapName: openshift-service-ca.crt + Optional: false +QoS Class: BestEffort +Node-Selectors: kubernetes.io/os=linux +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 114s default-scheduler Successfully assigned e2e-test-templates-gs774/simple-example-1-build to ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 + Normal AddedInterface 113s multus Add eth0 [10.130.2.89/23] from ovn-kubernetes + Normal Pulled 113s kubelet Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1" already present on machine + Normal Created 113s kubelet Created container: git-clone + Normal Started 113s kubelet Started container git-clone + Normal Pulled 112s kubelet Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1" already present on machine + Normal Created 111s kubelet Created container: manage-dockerfile + Normal Started 111s kubelet Started container manage-dockerfile + Normal Pulled 111s kubelet Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1" already present on machine + Normal Created 110s kubelet Created container: sti-build + Normal Started 110s kubelet Started container sti-build + + +I0902 07:35:51.437755 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 logs pod/simple-example-1-build -c git-clone -n e2e-test-templates-gs774' +I0902 07:35:51.619138 92773 framework.go:655] Log for pod "simple-example-1-build"/"git-clone" +----> +Cloning "https://github.com/sclorg/nodejs-ex" ... + Commit: 5506d732f447c7c48dc89619af3b8ee8f125cf90 (Merge pull request #289 from sclorg/update_test_suite) + Author: Petr Hracek + Date: Wed Aug 13 11:00:17 2025 +0200 +<----end of log for "simple-example-1-build"/"git-clone" + +I0902 07:35:51.619338 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 logs pod/simple-example-1-build -c manage-dockerfile -n e2e-test-templates-gs774' +I0902 07:35:51.802762 92773 framework.go:655] Log for pod "simple-example-1-build"/"manage-dockerfile" +----> + +<----end of log for "simple-example-1-build"/"manage-dockerfile" + +I0902 07:35:51.803040 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 logs pod/simple-example-1-build -c sti-build -n e2e-test-templates-gs774' +I0902 07:35:51.976559 92773 framework.go:655] Log for pod "simple-example-1-build"/"sti-build" +----> +time="2025-09-02T07:34:01Z" level=info msg="Not using native diff for overlay, this may cause degraded performance for building images: kernel has CONFIG_OVERLAY_FS_REDIRECT_DIR enabled" +I0902 07:34:01.285320 1 defaults.go:112] Defaulting to storage driver "overlay" with options [mountopt=metacopy=on]. +Caching blobs under "/var/cache/blobs". +Trying to pull quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE... +Getting image source signatures +Copying blob sha256:a89cc7e7f94ac65f32d784f816e95767e0716b743ab671cdcb53fab16b247bbe +Copying blob sha256:3f88ad95cf4fc555f286892daf0436cf2d9b89a32bb75216ed684d107d71996e +Copying blob sha256:6f94429be8e0e3a903774996a841e57aca2dc4b5a4f8220b0213a5f2807895c3 +Copying config sha256:d9ab1056f5feb029e381484a1b04ee6343bfae32f6f6f00148bffda9e8b9ce39 +Writing manifest to image destination +Generating dockerfile with builder image quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE +Adding transient rw bind mount for /run/secrets/rhsm +STEP 1/9: FROM quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE +STEP 2/9: LABEL "io.openshift.build.commit.ref"="master" "io.openshift.build.commit.message"="Merge pull request #289 from sclorg/update_test_suite" "io.openshift.build.source-location"="https://github.com/sclorg/nodejs-ex" "io.openshift.build.image"="quay.io/openshift/community-e2e-images:e2e-quay-io-redhat-developer-test-build-simples2i-1-2-thirLMR-JKplfkmE" "io.openshift.build.commit.author"="Petr Hracek " "io.openshift.build.commit.date"="Wed Aug 13 11:00:17 2025 +0200" "io.openshift.build.commit.id"="5506d732f447c7c48dc89619af3b8ee8f125cf90" +STEP 3/9: ENV OPENSHIFT_BUILD_NAME="simple-example-1" OPENSHIFT_BUILD_NAMESPACE="e2e-test-templates-gs774" OPENSHIFT_BUILD_SOURCE="https://github.com/sclorg/nodejs-ex" OPENSHIFT_BUILD_COMMIT="5506d732f447c7c48dc89619af3b8ee8f125cf90" +STEP 4/9: USER root +STEP 5/9: COPY upload/src /tmp/src +STEP 6/9: RUN chown -R 1001:0 /tmp/src +STEP 7/9: USER 1001 +STEP 8/9: RUN /usr/libexec/s2i/assemble +assembled! +STEP 9/9: CMD /usr/libexec/s2i/run +COMMIT temp.builder.openshift.io/e2e-test-templates-gs774/simple-example-1:3798ed7f +Getting image source signatures +Copying blob sha256:503273eb68e3ffa0c005bc0ee9b4365ab4ad2785978d7f8a9ae91adb14b286f3 +Copying blob sha256:70bd80668fe2336db39ace7b0916511289ea7d64d9fd59c618b650d513cbf4fa +Copying blob sha256:c7b626035eba161c86bb3cc6050b517d0c70d5e31c94070c0747507125f94bad +Copying blob sha256:5ba911b8b1f6f777b8efb680cda73338f83bf730eb817ce618452ca71c657acc +Copying config sha256:7f9771f2d934dad4e1d1a2b2bd48cceca98c648440bce6d60d74d4569818fd30 +Writing manifest to image destination +--> 7f9771f2d934 +Successfully tagged temp.builder.openshift.io/e2e-test-templates-gs774/simple-example-1:3798ed7f +7f9771f2d934dad4e1d1a2b2bd48cceca98c648440bce6d60d74d4569818fd30 + +Pushing image image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example:latest ... +Getting image source signatures +Copying blob sha256:5ba911b8b1f6f777b8efb680cda73338f83bf730eb817ce618452ca71c657acc +Copying blob sha256:6f94429be8e0e3a903774996a841e57aca2dc4b5a4f8220b0213a5f2807895c3 +Copying blob sha256:a89cc7e7f94ac65f32d784f816e95767e0716b743ab671cdcb53fab16b247bbe +Copying blob sha256:3f88ad95cf4fc555f286892daf0436cf2d9b89a32bb75216ed684d107d71996e +Copying config sha256:7f9771f2d934dad4e1d1a2b2bd48cceca98c648440bce6d60d74d4569818fd30 +Writing manifest to image destination +Successfully pushed image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90 +Push successful +<----end of log for "simple-example-1-build"/"sti-build" + +I0902 07:35:51.976891 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 describe pod/simple-example-5685685fbb-qxqdv -n e2e-test-templates-gs774' +I0902 07:35:52.125737 92773 framework.go:647] Describing pod "simple-example-5685685fbb-qxqdv" +Name: simple-example-5685685fbb-qxqdv +Namespace: e2e-test-templates-gs774 +Priority: 0 +Service Account: default +Node: ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s/10.0.128.4 +Start Time: Tue, 02 Sep 2025 07:34:18 +0000 +Labels: name=simple-example + pod-template-hash=5685685fbb +Annotations: k8s.ovn.org/pod-networks: + {"default":{"ip_addresses":["10.131.1.242/23"],"mac_address":"0a:58:0a:83:01:f2","gateway_ips":["10.131.0.1"],"routes":[{"dest":"10.128.0.... + k8s.v1.cni.cncf.io/network-status: + [{ + "name": "ovn-kubernetes", + "interface": "eth0", + "ips": [ + "10.131.1.242" + ], + "mac": "0a:58:0a:83:01:f2", + "default": true, + "dns": {} + }] + openshift.io/scc: restricted-v2 + seccomp.security.alpha.kubernetes.io/pod: runtime/default + security.openshift.io/validated-scc-subject-type: user +Status: Running +SeccompProfile: RuntimeDefault +IP: 10.131.1.242 +IPs: + IP: 10.131.1.242 +Controlled By: ReplicaSet/simple-example-5685685fbb +Containers: + simple-example: + Container ID: cri-o://4c31bccd7088ed35f911f947addfccedb46621c646944ac7dbeebcbb86481507 + Image: image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90 + Image ID: image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90 + Port: 8080/TCP + Host Port: 0/TCP + State: Waiting + Reason: CrashLoopBackOff + Last State: Terminated + Reason: Error + Exit Code: 1 + Started: Tue, 02 Sep 2025 07:35:19 +0000 + Finished: Tue, 02 Sep 2025 07:35:19 +0000 + Ready: False + Restart Count: 3 + Environment: + Mounts: + /var/run/secrets/kubernetes.io/serviceaccount from kube-api-access-krrcn (ro) +Conditions: + Type Status + PodReadyToStartContainers True + Initialized True + Ready False + ContainersReady False + PodScheduled True +Volumes: + kube-api-access-krrcn: + Type: Projected (a volume that contains injected data from multiple sources) + TokenExpirationSeconds: 3607 + ConfigMapName: kube-root-ca.crt + Optional: false + DownwardAPI: true + ConfigMapName: openshift-service-ca.crt + Optional: false +QoS Class: BestEffort +Node-Selectors: +Tolerations: node.kubernetes.io/not-ready:NoExecute op=Exists for 300s + node.kubernetes.io/unreachable:NoExecute op=Exists for 300s +Events: + Type Reason Age From Message + ---- ------ ---- ---- ------- + Normal Scheduled 93s default-scheduler Successfully assigned e2e-test-templates-gs774/simple-example-5685685fbb-qxqdv to ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s + Normal AddedInterface 93s multus Add eth0 [10.131.1.242/23] from ovn-kubernetes + Normal Pulling 93s kubelet Pulling image "image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90" + Normal Pulled 79s kubelet Successfully pulled image "image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90" in 13.499s (13.499s including waiting). Image size: 271196941 bytes. + Normal Created 33s (x4 over 79s) kubelet Created container: simple-example + Normal Started 33s (x4 over 79s) kubelet Started container simple-example + Normal Pulled 33s (x3 over 78s) kubelet Container image "image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90" already present on machine + Warning BackOff 3s (x7 over 77s) kubelet Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) + + +I0902 07:35:52.126457 92773 client.go:1023] Running 'oc --namespace=e2e-test-templates-gs774 --kubeconfig=/tmp/kubeconfig-182615149 logs pod/simple-example-5685685fbb-qxqdv -c simple-example -n e2e-test-templates-gs774' +I0902 07:35:52.262489 92773 framework.go:655] Log for pod "simple-example-5685685fbb-qxqdv"/"simple-example" +----> +exec container process `/bin/sh`: Exec format error +<----end of log for "simple-example-5685685fbb-qxqdv"/"simple-example" + + STEP: Collecting events from namespace "e2e-test-templates-gs774". @ 09/02/25 07:35:52.262 + STEP: Found 35 events. @ 09/02/25 07:35:52.273 +I0902 07:35:52.274128 92773 dump.go:53] At 0001-01-01 00:00:00 +0000 UTC - event for simple-example-1-build: { } Scheduled: Successfully assigned e2e-test-templates-gs774/simple-example-1-build to ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 +I0902 07:35:52.274161 92773 dump.go:53] At 0001-01-01 00:00:00 +0000 UTC - event for simple-example-5685685fbb-qxqdv: { } Scheduled: Successfully assigned e2e-test-templates-gs774/simple-example-5685685fbb-qxqdv to ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s +I0902 07:35:52.274181 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example: {deployment-controller } ScalingReplicaSet: Scaled up replica set simple-example-b5456dc5c from 0 to 1 +I0902 07:35:52.274192 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-nb4m6" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274208 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-kl4kn" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274220 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-lgppp" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274235 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-mftkl" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274246 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-2jqs8" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274261 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-bxwtm" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274272 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-9crv2" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274286 92773 dump.go:53] At 2025-09-02 07:33:57 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-snh6k" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274298 92773 dump.go:53] At 2025-09-02 07:33:58 +0000 UTC - event for simple-example-1-build: {multus } AddedInterface: Add eth0 [10.130.2.89/23] from ovn-kubernetes +I0902 07:35:52.274313 92773 dump.go:53] At 2025-09-02 07:33:58 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Started: Started container git-clone +I0902 07:35:52.274327 92773 dump.go:53] At 2025-09-02 07:33:58 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Pulled: Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1" already present on machine +I0902 07:35:52.274345 92773 dump.go:53] At 2025-09-02 07:33:58 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Created: Created container: git-clone +I0902 07:35:52.274359 92773 dump.go:53] At 2025-09-02 07:33:58 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: Error creating: Pod "simple-example-b5456dc5c-bglmz" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274374 92773 dump.go:53] At 2025-09-02 07:33:59 +0000 UTC - event for simple-example-1: {build-controller } BuildStarted: Build e2e-test-templates-gs774/simple-example-1 is now running +I0902 07:35:52.274385 92773 dump.go:53] At 2025-09-02 07:33:59 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Pulled: Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1" already present on machine +I0902 07:35:52.274400 92773 dump.go:53] At 2025-09-02 07:33:59 +0000 UTC - event for simple-example-b5456dc5c: {replicaset-controller } FailedCreate: (combined from similar events): Error creating: Pod "simple-example-b5456dc5c-scfkw" is invalid: spec.containers[0].image: Invalid value: " ": must not have leading or trailing whitespace +I0902 07:35:52.274412 92773 dump.go:53] At 2025-09-02 07:34:00 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Pulled: Container image "quay.io/openshift-release-dev/ocp-v4.0-art-dev@sha256:05080d3eca426ed2073b2d6cc4f70b1a601e4e49bc25dd490c6b134c7fb07da1" already present on machine +I0902 07:35:52.274427 92773 dump.go:53] At 2025-09-02 07:34:00 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Created: Created container: manage-dockerfile +I0902 07:35:52.274439 92773 dump.go:53] At 2025-09-02 07:34:00 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Started: Started container manage-dockerfile +I0902 07:35:52.274454 92773 dump.go:53] At 2025-09-02 07:34:01 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Started: Started container sti-build +I0902 07:35:52.274466 92773 dump.go:53] At 2025-09-02 07:34:01 +0000 UTC - event for simple-example-1-build: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8} Created: Created container: sti-build +I0902 07:35:52.274480 92773 dump.go:53] At 2025-09-02 07:34:18 +0000 UTC - event for simple-example: {deployment-controller } ScalingReplicaSet: Scaled up replica set simple-example-5685685fbb from 0 to 1 +I0902 07:35:52.274491 92773 dump.go:53] At 2025-09-02 07:34:18 +0000 UTC - event for simple-example-5685685fbb: {replicaset-controller } SuccessfulCreate: Created pod: simple-example-5685685fbb-qxqdv +I0902 07:35:52.274507 92773 dump.go:53] At 2025-09-02 07:34:19 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s} Pulling: Pulling image "image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90" +I0902 07:35:52.274518 92773 dump.go:53] At 2025-09-02 07:34:19 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {multus } AddedInterface: Add eth0 [10.131.1.242/23] from ovn-kubernetes +I0902 07:35:52.274533 92773 dump.go:53] At 2025-09-02 07:34:20 +0000 UTC - event for simple-example-1: {build-controller } BuildCompleted: Build e2e-test-templates-gs774/simple-example-1 completed successfully +I0902 07:35:52.274548 92773 dump.go:53] At 2025-09-02 07:34:33 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s} Pulled: Successfully pulled image "image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90" in 13.499s (13.499s including waiting). Image size: 271196941 bytes. +I0902 07:35:52.274565 92773 dump.go:53] At 2025-09-02 07:34:33 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s} Created: Created container: simple-example +I0902 07:35:52.274580 92773 dump.go:53] At 2025-09-02 07:34:33 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s} Started: Started container simple-example +I0902 07:35:52.274597 92773 dump.go:53] At 2025-09-02 07:34:34 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s} Pulled: Container image "image-registry.openshift-image-registry.svc:5000/e2e-test-templates-gs774/simple-example@sha256:f78fe76f67436a184843687fd13b9eb24d3fe667f591019af8793e00a2d18b90" already present on machine +I0902 07:35:52.274609 92773 dump.go:53] At 2025-09-02 07:34:35 +0000 UTC - event for simple-example-5685685fbb-qxqdv: {kubelet ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s} BackOff: Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) +I0902 07:35:52.274624 92773 dump.go:53] At 2025-09-02 07:35:20 +0000 UTC - event for simple-example: {deployment-controller } ScalingReplicaSet: Scaled down replica set simple-example-b5456dc5c from 1 to 0 +I0902 07:35:52.285612 92773 resource.go:168] POD NODE PHASE GRACE CONDITIONS +I0902 07:35:52.285721 92773 resource.go:175] simple-example-1-build ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 Succeeded [{PodReadyToStartContainers 0 False 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:20 +0000 UTC } {Initialized 0 True 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:00 +0000 UTC PodCompleted } {Ready 0 False 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:19 +0000 UTC PodCompleted } {ContainersReady 0 False 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:19 +0000 UTC PodCompleted } {PodScheduled 0 True 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:33:57 +0000 UTC }] +I0902 07:35:52.285763 92773 resource.go:175] simple-example-5685685fbb-qxqdv ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s Running [{PodReadyToStartContainers 0 True 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:34 +0000 UTC } {Initialized 0 True 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:18 +0000 UTC } {Ready 0 False 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:35:21 +0000 UTC ContainersNotReady containers with unready status: [simple-example]} {ContainersReady 0 False 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:35:21 +0000 UTC ContainersNotReady containers with unready status: [simple-example]} {PodScheduled 0 True 0001-01-01 00:00:00 +0000 UTC 2025-09-02 07:34:18 +0000 UTC }] +I0902 07:35:52.285775 92773 resource.go:178] +I0902 07:35:52.358702 92773 dump.go:81] skipping dumping cluster info - cluster too large +I0902 07:35:52.377412 92773 client.go:676] Deleted {user.openshift.io/v1, Resource=users e2e-test-templates-gs774-user}, err: +I0902 07:35:52.400401 92773 client.go:676] Deleted {oauth.openshift.io/v1, Resource=oauthclients e2e-client-e2e-test-templates-gs774}, err: +I0902 07:35:52.421545 92773 client.go:676] Deleted {oauth.openshift.io/v1, Resource=oauthaccesstokens sha256~BGYYiy1PJ65OCNNQKFLIq0Qmql9IwP9Sl861mFZitc8}, err: + STEP: Destroying namespace "e2e-test-templates-gs774" for this suite. @ 09/02/25 07:35:52.421 + +fail [github.com/openshift/origin/test/extended/templates/templateinstance_readiness.go:171]: Unexpected error: + : + timed out waiting for the condition + { + cause: <*errors.errorString | 0xc000a8a3b0>{ + s: "timed out waiting for the condition", + }, + } +occurred +failed: (2m0s) 2025-09-02T07:35:52 "[sig-devex][Feature:Templates] templateinstance readiness test should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (6.9s) 2025-09-02T07:35:52 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure OSSM and OLM related resources are created after creating GatewayClass [Suite:openshift/conformance/parallel]" + +passed: (13.3s) 2025-09-02T07:35:53 "[sig-cli] oc builds new-build [apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (1m23s) 2025-09-02T07:35:54 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure LB, service, and dnsRecord are created for a Gateway object [Suite:openshift/conformance/parallel]" + +passed: (3m37s) 2025-09-02T07:35:56 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork isolates overlapping CIDRs with L3 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (43.1s) 2025-09-02T07:35:56 "[sig-network][Feature:tuning] pod sysctl should not affect newly created pods [apigroup:k8s.cni.cncf.io] [Suite:openshift/conformance/parallel]" + +passed: (2m29s) 2025-09-02T07:36:01 "[sig-cli] templates different namespaces [apigroup:user.openshift.io][apigroup:project.openshift.io][apigroup:template.openshift.io][apigroup:authorization.openshift.io][Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (26.6s) 2025-09-02T07:36:03 "[sig-node][apigroup:config.openshift.io] CPU Partitioning cluster workloads in non-annotated namespaces should be allowed if CPUPartitioningMode = AllNodes with a warning annotation [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:36:03Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:8 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:36:03Z reason:BackOff]}" +passed: (31.7s) 2025-09-02T07:36:09 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] EndpointSlices mirroring when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions mirrors EndpointSlices managed by the default controller for namespaces with user defined primary networks L3 primary UDN, host-networked pods [Suite:openshift/conformance/parallel]" + + I0902 07:36:11.556971 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +time="2025-09-02T07:36:14Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:3 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:36:14Z reason:BackOff]}" +time="2025-09-02T07:36:19Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:9 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:36:19Z reason:BackOff]}" +passed: (4m0s) 2025-09-02T07:36:19 "[sig-storage] Managed cluster should have no crashlooping recycler pods over four minutes [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:36:25Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:4 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:36:25Z reason:BackOff]}" +passed: (3m39s) 2025-09-02T07:36:28 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using NetworkAttachmentDefinitions isolates overlapping CIDRs with L3 primary UDN [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:36:31Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:10 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:36:31Z reason:BackOff]}" +passed: (2m23s) 2025-09-02T07:36:41 "[sig-network-edge][OCPFeatureGate:GatewayAPIController][Feature:Router][apigroup:gateway.networking.k8s.io] Ensure HTTPRoute object is created [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:36:44Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:11 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:36:44Z reason:BackOff]}" +passed: (5m12s) 2025-09-02T07:36:50 "[sig-auth][Feature:ProjectAPI] TestScopedProjectAccess should succeed [apigroup:user.openshift.io][apigroup:project.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:36:53Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:5 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:36:53Z reason:BackOff]}" +time="2025-09-02T07:36:56Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:12 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:36:56Z reason:BackOff]}" +time="2025-09-02T07:37:07Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:6 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:37:07Z reason:BackOff]}" +time="2025-09-02T07:37:07Z" level=info msg="event interval matches KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:15d910e730 namespace:e2e-network-segmentation-e2e-9553 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:udn-pod]}" message="{Unhealthy Readiness probe failed: Get \"http://10.131.2.102:9000/healthz\": dial tcp 10.131.2.102:9000: connect: connection refused map[firstTimestamp:2025-09-02T07:37:07Z lastTimestamp:2025-09-02T07:37:07Z reason:Unhealthy]}" +passed: (1m44s) 2025-09-02T07:37:08 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using ClusterUserDefinedNetwork is isolated from the default network with L3 primary UDN [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:37:09Z" level=info msg="event interval matches PodSandbox" locator="{Kind map[hmsg:f7177192f7 namespace:e2e-test-ns-global-kdldg node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:test-ipv6-podklghx]}" message="{FailedCreatePodSandBox Failed to create pod sandbox: rpc error: code = Unknown desc = failed to create pod network sandbox k8s_test-ipv6-podklghx_e2e-test-ns-global-kdldg_de8f21fc-8a96-4c39-8d7d-be6fefb8574c_0(3869a4b5272730083bed6ea86ad0fac8ef4a9b9dc6edbea6caf0b980a696a5cb): error adding pod e2e-test-ns-global-kdldg_test-ipv6-podklghx to CNI network \"multus-cni-network\": plugin type=\"multus-shim\" name=\"multus-cni-network\" failed (add): CmdAdd (shim): CNI request failed with status 400: 'ContainerID:\"3869a4b5272730083bed6ea86ad0fac8ef4a9b9dc6edbea6caf0b980a696a5cb\" Netns:\"/var/run/netns/663ff488-5407-48c1-a682-3a2b607fb154\" IfName:\"eth0\" Args:\"IgnoreUnknown=1;K8S_POD_NAMESPACE=e2e-test-ns-global-kdldg;K8S_POD_NAME=test-ipv6-podklghx;K8S_POD_INFRA_CONTAINER_ID=3869a4b5272730083bed6ea86ad0fac8ef4a9b9dc6edbea6caf0b980a696a5cb;K8S_POD_UID=de8f21fc-8a96-4c39-8d7d-be6fefb8574c\" Path:\"\" ERRORED: error configuring pod [e2e-test-ns-global-kdldg/test-ipv6-podklghx] networking: [e2e-test-ns-global-kdldg/test-ipv6-podklghx/de8f21fc-8a96-4c39-8d7d-be6fefb8574c:ovn-kubernetes]: error adding container to network \"ovn-kubernetes\": CNI request failed with status 400: '[e2e-test-ns-global-kdldg/test-ipv6-podklghx 3869a4b5272730083bed6ea86ad0fac8ef4a9b9dc6edbea6caf0b980a696a5cb network default NAD default] [e2e-test-ns-global-kdldg/test-ipv6-podklghx 3869a4b5272730083bed6ea86ad0fac8ef4a9b9dc6edbea6caf0b980a696a5cb network default NAD default] failed to configure pod interface: timed out waiting for OVS port binding (ovn-installed) for 0a:58:0a:83:02:60 [10.131.2.96/23]\n'\n': StdinData: {\"auxiliaryCNIChainName\":\"vendor-cni-chain\",\"binDir\":\"/var/lib/cni/bin\",\"clusterNetwork\":\"/host/run/multus/cni/net.d/10-ovn-kubernetes.conf\",\"cniVersion\":\"0.3.1\",\"daemonSocketDir\":\"/run/multus/socket\",\"globalNamespaces\":\"default,openshift-multus,openshift-sriov-network-operator,openshift-cnv\",\"logLevel\":\"verbose\",\"logToStderr\":true,\"name\":\"multus-cni-network\",\"namespaceIsolation\":true,\"type\":\"multus-shim\"} map[firstTimestamp:2025-09-02T07:37:09Z lastTimestamp:2025-09-02T07:37:09Z reason:FailedCreatePodSandBox]}" +time="2025-09-02T07:37:10Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:13 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:37:10Z reason:BackOff]}" + I0902 07:37:11.782096 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (2m0s) 2025-09-02T07:37:17 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] when using openshift ovn-kubernetes created using UserDefinedNetwork is isolated from the default network with L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (2m18s) 2025-09-02T07:37:18 "[sig-network] external gateway address when using openshift ovn-kubernetes should match the address family of the pod [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:37:20Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:7 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:37:20Z reason:BackOff]}" +time="2025-09-02T07:37:24Z" level=info msg="event interval matches KubeAPIServerProgressingDuringSingleNodeUpgrade" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:14 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:37:24Z reason:BackOff]}" +time="2025-09-02T07:37:34Z" level=info msg="event interval matches E2EImagePullBackOff" locator="{Kind map[hmsg:a07687837d namespace:e2e-test-oc-builds-8x7jj node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:frontend-58c44cd55c-jxbkk]}" message="{BackOff Back-off pulling image \"origin-ruby-sample\" map[count:8 firstTimestamp:2025-09-02T07:35:19Z lastTimestamp:2025-09-02T07:37:34Z reason:BackOff]}" +passed: (2m30s) 2025-09-02T07:37:38 "[sig-cli] oc adm ui-project-commands [apigroup:project.openshift.io][apigroup:authorization.openshift.io][apigroup:user.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:37:39Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:15 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:37:39Z reason:BackOff]}" +passed: (4m26s) 2025-09-02T07:37:41 "[sig-cli] oc adm new-project [apigroup:project.openshift.io][apigroup:authorization.openshift.io] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:37:51Z" level=info msg="event interval matches AllowBackOffRestartingFailedContainer" locator="{Kind map[hmsg:7eac0e52b1 namespace:e2e-test-templates-gs774 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:simple-example-5685685fbb-qxqdv]}" message="{BackOff Back-off restarting failed container simple-example in pod simple-example-5685685fbb-qxqdv_e2e-test-templates-gs774(c28f1bea-1fac-48f5-a85e-90310ab412ce) map[count:16 firstTimestamp:2025-09-02T07:34:35Z lastTimestamp:2025-09-02T07:37:51Z reason:BackOff]}" + I0902 07:38:12.013578 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (3m31s) 2025-09-02T07:38:31 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when selinux should default to selinux label of namespace if pod has none" + +passed: (2m59s) 2025-09-02T07:38:41 "[sig-storage][OCPFeatureGate:StoragePerformantSecurityPolicy] Storage Performant Policy with valid namespace labels on when selinux should not override selinux change policy if pod already has one" + + I0902 07:39:12.294834 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' + I0902 07:40:12.518750 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' + I0902 07:41:12.747274 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (5m56s) 2025-09-02T07:41:27 "[sig-apps] poddisruptionbudgets with unhealthyPodEvictionPolicy should evict according to the AlwaysAllow policy [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + + I0902 07:42:12.952754 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' + I0902 07:43:13.153934 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (11m9s) 2025-09-02T07:43:13 "[sig-apps] poddisruptionbudgets with unhealthyPodEvictionPolicy should evict according to the IfHealthyBudget policy [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/1/4 "[sig-cli] oc adm must-gather runs successfully with options [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/2/4 "[sig-cli] oc adm must-gather when looking at the audit logs [apigroup:config.openshift.io] [sig-node] kubelet runs apiserver processes strictly sequentially in order to not risk audit log corruption [Suite:openshift/conformance/parallel]" + +started: 0/3/4 "[sig-cli] oc adm must-gather runs successfully [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/4/4 "[sig-cli] oc adm must-gather runs successfully for audit logs [apigroup:config.openshift.io][apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (12.4s) 2025-09-02T07:43:27 "[sig-cli] oc adm must-gather runs successfully with options [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (32.9s) 2025-09-02T07:43:48 "[sig-cli] oc adm must-gather when looking at the audit logs [apigroup:config.openshift.io] [sig-node] kubelet runs apiserver processes strictly sequentially in order to not risk audit log corruption [Suite:openshift/conformance/parallel]" + + I0902 07:44:13.382065 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (1m4s) 2025-09-02T07:44:19 "[sig-cli] oc adm must-gather runs successfully for audit logs [apigroup:config.openshift.io][apigroup:oauth.openshift.io] [Suite:openshift/conformance/parallel]" + + I0902 07:45:13.602426 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' + I0902 07:46:13.814042 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (3m23s) 2025-09-02T07:46:38 "[sig-cli] oc adm must-gather runs successfully [apigroup:config.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/1/18 "[sig-arch][Late][Jira:\"kube-apiserver\"] collect certificate data [Suite:openshift/conformance/parallel]" + +started: 0/2/18 "[sig-api-machinery][Feature:APIServer][Late] API LBs follow /readyz of kube-apiserver and stop sending requests [Suite:openshift/conformance/parallel]" + +started: 0/3/18 "[sig-arch][Late][Jira:\"kube-apiserver\"] all tls artifacts must be registered [Suite:openshift/conformance/parallel]" + +started: 0/4/18 "[sig-api-machinery][Feature:APIServer][Late] kube-apiserver terminates within graceful termination period [Suite:openshift/conformance/parallel]" + +started: 0/5/18 "[sig-storage][Late] Metrics should report short mount times [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/6/18 "[sig-node][Late] should not have pod creation failures due to systemd timeouts [Suite:openshift/conformance/parallel]" + +started: 0/7/18 "[sig-arch][Late][Jira:\"kube-apiserver\"] all registered tls artifacts must have no metadata violation regressions [Suite:openshift/conformance/parallel]" + +started: 0/8/18 "[sig-api-machinery][Feature:APIServer][Late] kubelet terminates kube-apiserver gracefully extended [Suite:openshift/conformance/parallel]" + +started: 0/9/18 "[sig-node] Managed cluster should verify that nodes have no unexpected reboots [Late] [Suite:openshift/conformance/parallel]" + +started: 0/10/18 "[sig-storage][Late] Metrics should report short attach times [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +started: 0/11/18 "[sig-api-machinery][Feature:APIServer][Late] kubelet terminates kube-apiserver gracefully [Suite:openshift/conformance/parallel]" + +started: 0/12/18 "[sig-cloud-provider][Feature:OpenShiftCloudControllerManager][Late] Deploy an external cloud provider [apigroup:machineconfiguration.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/13/18 "[sig-etcd] etcd leader changes are not excessive [Late] [Suite:openshift/conformance/parallel]" + +started: 0/14/18 "[sig-cloud-provider][Feature:OpenShiftCloudControllerManager][Late] Cluster scoped load balancer healthcheck port and path should be 10256/healthz [Suite:openshift/conformance/parallel]" + +started: 0/15/18 "[sig-api-machinery][Feature:APIServer][Late] API LBs follow /readyz of kube-apiserver and don't send request early [Suite:openshift/conformance/parallel]" + +started: 0/16/18 "[sig-arch][Late] clients should not use APIs that are removed in upcoming releases [apigroup:apiserver.openshift.io] [Suite:openshift/conformance/parallel]" + +started: 0/17/18 "[sig-instrumentation][Late] Alerts shouldn't exceed the series limit of total series sent via telemetry from each cluster [Suite:openshift/conformance/parallel]" + +started: 0/18/18 "[sig-node] Managed cluster should report ready nodes the entire duration of the test run [Late][apigroup:monitoring.coreos.com] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:46:41 "[sig-api-machinery][Feature:APIServer][Late] kubelet terminates kube-apiserver gracefully [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/prometheus/prometheus.go:504]: Telemetry is disabled: openshift-monitoring/cluster-monitoring-config telemeterClient enabled is: false + +skipped: (100ms) 2025-09-02T07:46:41 "[sig-instrumentation][Late] Alerts shouldn't exceed the series limit of total series sent via telemetry from each cluster [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:46:41 "[sig-api-machinery][Feature:APIServer][Late] API LBs follow /readyz of kube-apiserver and stop sending requests [Suite:openshift/conformance/parallel]" + +passed: (100ms) 2025-09-02T07:46:41 "[sig-etcd] etcd leader changes are not excessive [Late] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:46:41 "[sig-api-machinery][Feature:APIServer][Late] kube-apiserver terminates within graceful termination period [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:46:41 "[sig-arch][Late] clients should not use APIs that are removed in upcoming releases [apigroup:apiserver.openshift.io] [Suite:openshift/conformance/parallel]" + +passed: (0s) 2025-09-02T07:46:42 "[sig-api-machinery][Feature:APIServer][Late] API LBs follow /readyz of kube-apiserver and don't send request early [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T07:46:42 "[sig-storage][Late] Metrics should report short attach times [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (300ms) 2025-09-02T07:46:42 "[sig-storage][Late] Metrics should report short mount times [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (500ms) 2025-09-02T07:46:42 "[sig-node][Late] should not have pod creation failures due to systemd timeouts [Suite:openshift/conformance/parallel]" + +passed: (1.7s) 2025-09-02T07:46:42 "[sig-api-machinery][Feature:APIServer][Late] kubelet terminates kube-apiserver gracefully extended [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/cloud_controller_manager/ccm.go:42]: Platform does not use external cloud provider + +skipped: (1.3s) 2025-09-02T07:46:43 "[sig-cloud-provider][Feature:OpenShiftCloudControllerManager][Late] Deploy an external cloud provider [apigroup:machineconfiguration.openshift.io] [Suite:openshift/conformance/parallel]" + +skip [github.com/openshift/origin/test/extended/util/framework.go:2456]: Skip this test scenario because it is not supported on the GCP platform + +skipped: (1.3s) 2025-09-02T07:46:43 "[sig-cloud-provider][Feature:OpenShiftCloudControllerManager][Late] Cluster scoped load balancer healthcheck port and path should be 10256/healthz [Suite:openshift/conformance/parallel]" + +passed: (1.5s) 2025-09-02T07:46:43 "[sig-node] Managed cluster should report ready nodes the entire duration of the test run [Late][apigroup:monitoring.coreos.com] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (25.2s) 2025-09-02T07:47:07 "[sig-arch][Late][Jira:\"kube-apiserver\"] all tls artifacts must be registered [Suite:openshift/conformance/parallel]" + +passed: (25.4s) 2025-09-02T07:47:07 "[sig-arch][Late][Jira:\"kube-apiserver\"] collect certificate data [Suite:openshift/conformance/parallel]" + +passed: (25.1s) 2025-09-02T07:47:07 "[sig-arch][Late][Jira:\"kube-apiserver\"] all registered tls artifacts must have no metadata violation regressions [Suite:openshift/conformance/parallel]" + + I0902 07:47:14.024636 925 client.go:1023] Running 'oc --kubeconfig=/tmp/kubeconfig-182615149 adm upgrade status --details=all' +passed: (40s) 2025-09-02T07:47:20 "[sig-node] Managed cluster should verify that nodes have no unexpected reboots [Late] [Suite:openshift/conformance/parallel]" + +time="2025-09-02T07:47:20Z" level=warning msg="3 tests failed, 2 tests permitted to be retried; 1 failures are non-retryable" +started: 0/1/2 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L2 primary UDN [Suite:openshift/conformance/parallel]" + +started: 0/2/2 "[sig-devex][Feature:Templates] templateinstance readiness test should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +passed: (23.4s) 2025-09-02T07:47:45 "[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L2 primary UDN [Suite:openshift/conformance/parallel]" + +passed: (30.7s) 2025-09-02T07:47:52 "[sig-devex][Feature:Templates] templateinstance readiness test should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel]" + +Flaky tests: + +[sig-devex][Feature:Templates] templateinstance readiness test should report ready soon after all annotated objects are ready [apigroup:template.openshift.io][apigroup:build.openshift.io] [Skipped:Disconnected] [Suite:openshift/conformance/parallel] +[sig-network][OCPFeatureGate:NetworkSegmentation][Feature:UserDefinedPrimaryNetworks] Network Policies when using openshift ovn-kubernetes allow ingress traffic to one pod from a particular namespace in L2 primary UDN [Suite:openshift/conformance/parallel] + +Shutting down the monitor +Shutting down SimultaneousPodIPController +Collecting data. +SimultaneousPodIPController shut down +time="2025-09-02T07:47:52Z" level=info msg="Starting CollectData for all monitor tests" + E0902 07:47:52.765504 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765564 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765518 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765566 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765585 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test kubelet-container-restarts collection" + E0902 07:47:52.765614 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test kubelet-container-restarts collection" + E0902 07:47:52.765626 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765623 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close"time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test node-state-analyzer collection" + + E0902 07:47:52.765650 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765635 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test legacy-kube-apiserver-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test generation-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test node-lifecycle collection" + E0902 07:47:52.765738 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765751 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765784 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765774 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" + E0902 07:47:52.765839 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test event-collector collection" + E0902 07:47:52.765811 925 disruption_backend_sampler.go:499] "Unhandled Error" err="not finished writing all samples (1 remaining), but we're told to close" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Cluster-Lifecycle / machine-api\"] monitor test machine-lifecycle collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test tracked-resources-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test tracked-resources-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Monitoring\"] monitor test metrics-api-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test pod-lifecycle collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:metrics-api-reused-connections connection:reused disruption:openshift-tests]}... +waiting for consumer to finish {Disruption map[backend-disruption-name:metrics-api-new-connections connection:new disruption:openshift-tests]}... +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test pod-lifecycle collection" +consumer finished {Disruption map[backend-disruption-name:metrics-api-new-connections connection:new disruption:openshift-tests]} +consumer finished {Disruption map[backend-disruption-name:metrics-api-reused-connections connection:reused disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Networking / On-Prem Host Networking\"] monitor test on-prem-haproxy collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Monitoring\"] monitor test metrics-api-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test clusteroperator-collector collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test clusteroperator-collector collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test interval-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test interval-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Networking / router\"] monitor test ingress-availability collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:ingress-to-oauth-server-reused-connections connection:reused disruption:openshift-tests namespace:openshift-authentication route:oauth-openshift]}... +consumer finished {Disruption map[backend-disruption-name:ingress-to-oauth-server-reused-connections connection:reused disruption:openshift-tests namespace:openshift-authentication route:oauth-openshift]} +waiting for consumer to finish {Disruption map[backend-disruption-name:ingress-to-oauth-server-new-connections connection:new disruption:openshift-tests namespace:openshift-authentication route:oauth-openshift]}... +consumer finished {Disruption map[backend-disruption-name:ingress-to-oauth-server-new-connections connection:new disruption:openshift-tests namespace:openshift-authentication route:oauth-openshift]} +waiting for consumer to finish {Disruption map[backend-disruption-name:ingress-to-console-reused-connections connection:reused disruption:openshift-tests namespace:openshift-console route:console]}... +consumer finished {Disruption map[backend-disruption-name:ingress-to-console-reused-connections connection:reused disruption:openshift-tests namespace:openshift-console route:console]} +waiting for consumer to finish {Disruption map[backend-disruption-name:ingress-to-console-new-connections connection:new disruption:openshift-tests namespace:openshift-console route:console]}... +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Monitoring\"] monitor test monitoring-statefulsets-recreation collection" +consumer finished {Disruption map[backend-disruption-name:ingress-to-console-new-connections connection:new disruption:openshift-tests namespace:openshift-console route:console]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Networking / router\"] monitor test ingress-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Monitoring\"] monitor test monitoring-statefulsets-recreation collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test node-state-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test apiserver-external-availability collection" +time="2025-09-02T07:47:52Z" level=info msg="collecting intervals" func=CollectData monitorTest=apiserver-external-availability +waiting for consumer to finish {Disruption map[backend-disruption-name:kube-api-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:kube-api-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:kube-api-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:kube-api-new-connections connection:new disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:cache-kube-api-reused-connections connection:reused disruption:openshift-tests]}... +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test alert-summary-serializer collection" +consumer finished {Disruption map[backend-disruption-name:cache-kube-api-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:cache-kube-api-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:cache-kube-api-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"etcd\"] monitor test etcd-log-analyzer collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:openshift-api-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:openshift-api-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:openshift-api-new-connections connection:new disruption:openshift-tests]}... +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test known-image-checker collection" +consumer finished {Disruption map[backend-disruption-name:openshift-api-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test known-image-checker collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:cache-openshift-api-reused-connections connection:reused disruption:openshift-tests]}... +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test disruption-summary-serializer collection" +consumer finished {Disruption map[backend-disruption-name:cache-openshift-api-reused-connections connection:reused disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test disruption-summary-serializer collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:cache-openshift-api-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:cache-openshift-api-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test additional-events-collector collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:oauth-api-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:oauth-api-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:oauth-api-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:oauth-api-new-connections connection:new disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:cache-oauth-api-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:cache-oauth-api-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:cache-oauth-api-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:cache-oauth-api-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test apiserver-external-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Cluster Version Operator\"] monitor test legacy-cvo-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"apiserver-auth\"] monitor test legacy-authentication-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"apiserver-auth\"] monitor test legacy-authentication-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Cluster Version Operator\"] monitor test legacy-cvo-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test azure-metrics-collector collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test e2e-test-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test high-cpu-test-analyzer collection" +time="2025-09-02T07:47:52Z" level=warning msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test azure-metrics-collector collection with not supported warning" reason="platform GCP not supported" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test e2e-test-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test apiserver-incluster-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test generation-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test external-service-availability collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:ci-cluster-network-liveness-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:ci-cluster-network-liveness-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:ci-cluster-network-liveness-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:ci-cluster-network-liveness-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Cluster Version Operator\"] monitor test required-scc-annotation-checker collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test api-unreachable-from-client-metrics collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test external-azure-cloud-service-availability collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:azure-network-liveness-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:azure-network-liveness-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:azure-network-liveness-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:azure-network-liveness-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Cluster Version Operator\"] monitor test operator-state-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Cluster Version Operator\"] monitor test operator-state-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test external-azure-cloud-service-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test faulty-load-balancer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test faulty-load-balancer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Networking / cluster-network-operator\"] monitor test legacy-networking-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test timeline-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test timeline-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test cluster-info-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test cluster-info-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Networking / cluster-network-operator\"] monitor test legacy-networking-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test staicpod-install-monitor collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test lease-checker collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test lease-checker collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test kubelet-log-collector collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"oc / update\"] monitor test oc-adm-upgrade-status collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test initial-and-final-operator-log-scraper collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"etcd\"] monitor test legacy-etcd-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"etcd\"] monitor test legacy-etcd-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Storage\"] monitor test legacy-storage-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Storage\"] monitor test legacy-storage-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test legacy-kube-apiserver-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test metrics-endpoints-down collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Networking / router\"] monitor test service-type-load-balancer-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test event-collector collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test high-cpu-test-analyzer collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:service-load-balancer-with-pdb-reused-connections connection:reused disruption:openshift-tests]}... +waiting for consumer to finish {Disruption map[backend-disruption-name:service-load-balancer-with-pdb-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:service-load-balancer-with-pdb-reused-connections connection:reused disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test graceful-shutdown-analyzer collection" +consumer finished {Disruption map[backend-disruption-name:service-load-balancer-with-pdb-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test graceful-shutdown-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Networking / router\"] monitor test service-type-load-balancer-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test legacy-test-framework-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test external-aws-cloud-service-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test pathological-event-analyzer collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:aws-network-liveness-reused-connections connection:reused disruption:openshift-tests]}... +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test pathological-event-analyzer collection" +consumer finished {Disruption map[backend-disruption-name:aws-network-liveness-reused-connections connection:reused disruption:openshift-tests]} +waiting for consumer to finish {Disruption map[backend-disruption-name:aws-network-liveness-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:aws-network-liveness-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Networking / On-Prem Loadbalancer\"] monitor test on-prem-keepalived collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Networking / On-Prem Loadbalancer\"] monitor test on-prem-keepalived collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test external-aws-cloud-service-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test watch-namespaces collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test watch-namespaces collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Test Framework\"] monitor test external-gcp-cloud-service-availability collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:gcp-network-liveness-reused-connections connection:reused disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:gcp-network-liveness-reused-connections connection:reused disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Cluster Version Operator\"] monitor test termination-message-policy collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:gcp-network-liveness-new-connections connection:new disruption:openshift-tests]}... +consumer finished {Disruption map[backend-disruption-name:gcp-network-liveness-new-connections connection:new disruption:openshift-tests]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test external-gcp-cloud-service-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test legacy-node-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test legacy-node-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg="creating flag configmap" func=CollectData monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test external-service-availability collection" +time="2025-09-02T07:47:52Z" level=info msg="Shutting down PodsLogStreamer controller" component=PodsStreamer +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test apiserver-disruption-invariant collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"etcd\"] monitor test etcd-log-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test node-lifecycle collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"kube-apiserver\"] monitor test audit-log-analyzer collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test staicpod-install-monitor collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Network / ovn-kubernetes\"] monitor test pod-network-avalibility collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Cluster-Lifecycle / machine-api\"] monitor test machine-lifecycle collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test legacy-test-framework-invariants collection" +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Image Registry\"] monitor test image-registry-availability collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:image-registry-reused-connections connection:reused disruption:openshift-tests namespace:openshift-image-registry route:test-disruption-reused]}... +consumer finished {Disruption map[backend-disruption-name:image-registry-reused-connections connection:reused disruption:openshift-tests namespace:openshift-image-registry route:test-disruption-reused]} +time="2025-09-02T07:47:52Z" level=info msg=" Starting CollectData for [Jira:\"Node / Kubelet\"] monitor test high-cpu-metric-collector collection" +waiting for consumer to finish {Disruption map[backend-disruption-name:image-registry-new-connections connection:new disruption:openshift-tests namespace:openshift-image-registry route:test-disruption-new]}... +consumer finished {Disruption map[backend-disruption-name:image-registry-new-connections connection:new disruption:openshift-tests namespace:openshift-image-registry route:test-disruption-new]} +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Image Registry\"] monitor test image-registry-availability collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test additional-events-collector collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"oc / update\"] monitor test oc-adm-upgrade-status collection" + I0902 07:47:52.782355 925 framework.go:2317] microshift-version configmap not found + W0902 07:47:52.811393 925 pod_log.go:129] error summarizing pod logs: previous terminated container "cluster-version-operator" in pod "cluster-version-operator-585796749b-nkxwr" not found + I0902 07:47:52.833385 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: + I0902 07:47:52.833702 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: + I0902 07:47:52.833855 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: + I0902 07:47:52.833984 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: + I0902 07:47:52.834100 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: + I0902 07:47:52.834235 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: + I0902 07:47:52.834345 925 monitortest.go:185] monitor[api-unreachable-from-client-metrics]: failed to get node name for instance: +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test api-unreachable-from-client-metrics collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Networking / On-Prem Host Networking\"] monitor test on-prem-haproxy collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test metrics-endpoints-down collection" +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test alert-summary-serializer collection" +time="2025-09-02T07:47:52Z" level=info msg="collected 5 high CPU intervals" MonitorTest=HighCPUMetricCollector +time="2025-09-02T07:47:52Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test high-cpu-metric-collector collection" +time="2025-09-02T07:47:53Z" level=info msg=" Finished CollectData for [Jira:\"Cluster Version Operator\"] monitor test termination-message-policy collection" +Failure parsing time format: parsing time "Boot -- 2025 80e298f387c042c1a1dbdb4c221bb1f5 UTC" as "02 Jan 2006 15:04:05.999999999 MST": cannot parse "Boot -- 2025 80e298f387c042c1a1dbdb4c221bb1f5 UTC" as "02" for "Boot -- 2025 80e298f387c042c1a1dbdb4c221bb1f5 UTC" +Failure parsing time format: parsing time "Boot -- 2025 79833a3eaf824d3bb130ca187f875b3c UTC" as "02 Jan 2006 15:04:05.999999999 MST": cannot parse "Boot -- 2025 79833a3eaf824d3bb130ca187f875b3c UTC" as "02" for "Boot -- 2025 79833a3eaf824d3bb130ca187f875b3c UTC" + I0902 07:47:53.970979 925 request.go:752] "Waited before sending request" delay="1.157364138s" reason="client-side throttling, not priority and fairness" verb="GET" URL="https://api.ci-op-0k0qibps-871dd.XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX:6443/api/v1/nodes/ci-op-0k0qibps-871dd-dt55f-master-0/proxy/logs/kube-apiserver/audit-2025-09-02T06-59-50.438.log" +time="2025-09-02T07:47:54Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test apiserver-disruption-invariant collection" +Collection of node logs and analysis took: 3.264522552s +time="2025-09-02T07:47:56Z" level=info msg=" Finished CollectData for [Jira:\"Node / Kubelet\"] monitor test kubelet-log-collector collection" +time="2025-09-02T07:48:05Z" level=info msg=" Finished CollectData for [Jira:\"Cluster Version Operator\"] monitor test required-scc-annotation-checker collection" +time="2025-09-02T07:48:14Z" level=info msg=" Finished CollectData for [Jira:\"Test Framework\"] monitor test initial-and-final-operator-log-scraper collection" +time="2025-09-02T07:48:22Z" level=info msg="collecting data from the deployments" func=CollectData monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:22Z" level=info msg="intervals collected" func=CollectData monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:22Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test apiserver-incluster-availability collection" +time="2025-09-02T07:48:30Z" level=info msg=" Finished CollectData for [Jira:\"kube-apiserver\"] monitor test audit-log-analyzer collection" +time="2025-09-02T07:48:31Z" level=info msg=" Finished CollectData for [Jira:\"Network / ovn-kubernetes\"] monitor test pod-network-avalibility collection" +time="2025-09-02T07:48:31Z" level=info msg="Finished CollectData for all monitor tests" +Computing intervals. +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:01:09.823 W clusteroperator/kube-apiserver condition/Upgradeable reason/KubeletMinorVersion_KubeletVersionUnknown status/Unknown KubeletMinorVersionUpgradeable: Unable to determine the kubelet version on node e2e-fake-node-qw568: Version string empty" operator=kube-apiserver +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type Upgradeable != Available" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:01:09.972 W clusteroperator/kube-apiserver condition/Upgradeable reason/AsExpected status/True KubeletMinorVersionUpgradeable: Kubelet and API server minor versions are synced." operator=kube-apiserver +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type Upgradeable != Available" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.898 I clusteroperator/test-instance created" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="currentCondition came back nil, event does not appear to be a condition" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.912 W clusteroperator/test-instance condition/FirstType reason/Dummy status/True No Value" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type FirstType != Available" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.938 W clusteroperator/test-instance condition/SecondType reason/Dummy status/True No Value" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type SecondType != Available" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.970 W clusteroperator/test-instance deleted" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="currentCondition came back nil, event does not appear to be a condition" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:01:09.823 W clusteroperator/kube-apiserver condition/Upgradeable reason/KubeletMinorVersion_KubeletVersionUnknown status/Unknown KubeletMinorVersionUpgradeable: Unable to determine the kubelet version on node e2e-fake-node-qw568: Version string empty" operator=kube-apiserver +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type Upgradeable != Progressing" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:01:09.972 W clusteroperator/kube-apiserver condition/Upgradeable reason/AsExpected status/True KubeletMinorVersionUpgradeable: Kubelet and API server minor versions are synced." operator=kube-apiserver +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type Upgradeable != Progressing" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.898 I clusteroperator/test-instance created" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="currentCondition came back nil, event does not appear to be a condition" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.912 W clusteroperator/test-instance condition/FirstType reason/Dummy status/True No Value" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type FirstType != Progressing" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.938 W clusteroperator/test-instance condition/SecondType reason/Dummy status/True No Value" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type SecondType != Progressing" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.970 W clusteroperator/test-instance deleted" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="currentCondition came back nil, event does not appear to be a condition" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:01:09.823 W clusteroperator/kube-apiserver condition/Upgradeable reason/KubeletMinorVersion_KubeletVersionUnknown status/Unknown KubeletMinorVersionUpgradeable: Unable to determine the kubelet version on node e2e-fake-node-qw568: Version string empty" operator=kube-apiserver +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type Upgradeable != Degraded" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:01:09.972 W clusteroperator/kube-apiserver condition/Upgradeable reason/AsExpected status/True KubeletMinorVersionUpgradeable: Kubelet and API server minor versions are synced." operator=kube-apiserver +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type Upgradeable != Degraded" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.898 I clusteroperator/test-instance created" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="currentCondition came back nil, event does not appear to be a condition" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.912 W clusteroperator/test-instance condition/FirstType reason/Dummy status/True No Value" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type FirstType != Degraded" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.938 W clusteroperator/test-instance condition/SecondType reason/Dummy status/True No Value" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="checking if currentCondition.Type SecondType != Degraded" +time="2025-09-02T07:48:31Z" level=info msg="condition types not equal" +time="2025-09-02T07:48:31Z" level=info msg="operator status: processing event" event="Sep 02 07:33:06.970 W clusteroperator/test-instance deleted" operator=test-instance +time="2025-09-02T07:48:31Z" level=info msg="currentCondition came back nil, event does not appear to be a condition" +time="2025-09-02T07:48:32Z" level=info msg="Number of pathological keys: 4" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1310 node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod/startup-sidecar-7a70e7d8-88ac-45b1-9d2e-7e2b63e85e1e hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-3015 node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod/liveness-d1acc77a-649c-4fe2-8064-6374ae34ebf5 hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1817 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod/startup-71d1d620-be38-407c-bd81-c4e31ac7772f hmsg/6f55bb65db Message=Startup probe failed: " +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +time="2025-09-02T07:48:32Z" level=info msg="Found a times match: Locator=namespace/e2e-container-probe-1325 node/ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod/test-liveness-sidecar-79cfcc42-be7e-439e-ad92-dd789accdb2b hmsg/8daf1b7642 Message=Liveness probe warning: Probe terminated redirects, Response body: Found.\n\n" +Evaluating tests. +time="2025-09-02T07:48:35Z" level=info msg="found 8 metrics endpoint down intervals" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found 0 node update intervals" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:00:49.789 - 58s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 instance/10.0.128.2:10250 metrics-path//metrics/cadvisor service/kubelet {instance=\"10.0.128.2:10250\", metrics_path=\"/metrics/cadvisor\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:00:51.789 - 28s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s instance/10.0.128.4:10250 metrics-path//metrics/cadvisor service/kubelet {instance=\"10.0.128.4:10250\", metrics_path=\"/metrics/cadvisor\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:00:55.789 - 28s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s instance/10.0.128.4:10250 metrics-path//metrics service/kubelet {instance=\"10.0.128.4:10250\", metrics_path=\"/metrics\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:01:03.789 - 28s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 instance/10.0.128.2:10250 metrics-path//metrics service/kubelet {instance=\"10.0.128.2:10250\", metrics_path=\"/metrics\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:06:39.789 - 28s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts instance/10.0.128.3:10250 metrics-path//metrics service/kubelet {instance=\"10.0.128.3:10250\", metrics_path=\"/metrics\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:06:43.789 - 28s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts instance/10.0.128.3:10250 metrics-path//metrics/cadvisor service/kubelet {instance=\"10.0.128.3:10250\", metrics_path=\"/metrics/cadvisor\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:07:39.789 - 58s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts instance/10.0.128.3:10250 metrics-path//metrics service/kubelet {instance=\"10.0.128.3:10250\", metrics_path=\"/metrics\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="checking metrics down interval: Sep 02 07:07:43.789 - 58s W namespace/kube-system node/ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts instance/10.0.128.3:10250 metrics-path//metrics/cadvisor service/kubelet {instance=\"10.0.128.3:10250\", metrics_path=\"/metrics/cadvisor\", namespace=\"kube-system\", node=\"ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts\", service=\"kubelet\"}" MonitorTest=MetricsEndpointDown +time="2025-09-02T07:48:35Z" level=info msg="found no overlap with a node update" MonitorTest=MetricsEndpointDown + I0902 07:48:35.265463 925 monitortest.go:74] monitor[faulty-load-balancer]: found 0 interesting intervals, kube-apiserver shutdown interval count: 0 + I0902 07:48:35.394686 925 framework.go:2317] microshift-version configmap not found +time="2025-09-02T07:48:35Z" level=info msg="found 0 node NotReady intervals" + I0902 07:48:36.136228 925 framework.go:2317] microshift-version configmap not found +time="2025-09-02T07:48:36Z" level=info msg="filtered 112979 intervals down to 597 disruption intervals" +time="2025-09-02T07:48:36Z" level=info msg="allServers = map[cache-kube-api-new-connections: cache-kube-api-reused-connections: cache-oauth-api-new-connections: cache-oauth-api-reused-connections: cache-openshift-api-new-connections: cache-openshift-api-reused-connections: ingress-to-console-new-connections: ingress-to-console-reused-connections: ingress-to-oauth-server-new-connections: ingress-to-oauth-server-reused-connections: kube-api-http1-internal-lb-new-connections: kube-api-http1-internal-lb-reused-connections: kube-api-http1-service-network-new-connections: kube-api-http1-service-network-reused-connections: kube-api-http2-internal-lb-new-connections: kube-api-http2-internal-lb-reused-connections: kube-api-http2-service-network-new-connections: kube-api-http2-service-network-reused-connections: kube-api-new-connections: kube-api-reused-connections: metrics-api-new-connections: metrics-api-reused-connections: oauth-api-new-connections: oauth-api-reused-connections: openshift-api-http2-internal-lb-new-connections: openshift-api-http2-internal-lb-reused-connections: openshift-api-http2-service-network-new-connections: openshift-api-http2-service-network-reused-connections: openshift-api-new-connections: openshift-api-reused-connections:]" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend cache-openshift-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend cache-kube-api-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend oauth-api-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http1-service-network-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend openshift-api-http2-service-network-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend cache-openshift-api-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http2-service-network-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend openshift-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend metrics-api-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend cache-kube-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http2-internal-lb-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend metrics-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http1-service-network-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http2-service-network-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend openshift-api-http2-service-network-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http1-internal-lb-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http2-internal-lb-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend openshift-api-http2-internal-lb-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend ingress-to-console-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend ingress-to-console-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend kube-api-http1-internal-lb-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend oauth-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend cache-oauth-api-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend ingress-to-oauth-server-reused-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend ingress-to-oauth-server-new-connections" +time="2025-09-02T07:48:36Z" level=info msg="found 0 disruption events for backend openshift-api-reused-connections" +time="2025-09-02T07:48:37Z" level=info msg="found 0 disruption events for backend openshift-api-http2-internal-lb-new-connections" +time="2025-09-02T07:48:37Z" level=info msg="found 0 disruption events for backend cache-oauth-api-reused-connections" +time="2025-09-02T07:48:37Z" level=info msg="created toleration for etcd readiness probes per revision" allowedRepeats=96 etcdRevision=8 +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:00:24Z interesting:true lastTimestamp:2025-09-02T07:00:43Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:00:24Z interesting:true lastTimestamp:2025-09-02T07:00:44Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:00:24Z interesting:true lastTimestamp:2025-09-02T07:00:45Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:00:26Z interesting:true lastTimestamp:2025-09-02T07:00:45Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:00:24Z interesting:true lastTimestamp:2025-09-02T07:00:46Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:00:26Z interesting:true lastTimestamp:2025-09-02T07:00:46Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3323 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:00:24Z interesting:true lastTimestamp:2025-09-02T07:00:47Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:00:26Z interesting:true lastTimestamp:2025-09-02T07:00:47Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:00:26Z interesting:true lastTimestamp:2025-09-02T07:00:48Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4931 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-8q2j8 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:00:26Z interesting:true lastTimestamp:2025-09-02T07:00:49Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:02:23Z interesting:true lastTimestamp:2025-09-02T07:02:42Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:02:23Z interesting:true lastTimestamp:2025-09-02T07:02:43Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:02:23Z interesting:true lastTimestamp:2025-09-02T07:02:44Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:02:23Z interesting:true lastTimestamp:2025-09-02T07:02:45Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-3557 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:02:23Z interesting:true lastTimestamp:2025-09-02T07:02:46Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:03:49Z interesting:true lastTimestamp:2025-09-02T07:04:08Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:04:48Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-1952 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss2-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:22 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:04:49Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-additional-k8sm7 pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:06:55Z interesting:true lastTimestamp:2025-09-02T07:07:14Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:07:00Z interesting:true lastTimestamp:2025-09-02T07:07:19Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:07:00Z interesting:true lastTimestamp:2025-09-02T07:07:20Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:07:00Z interesting:true lastTimestamp:2025-09-02T07:07:21Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:07:00Z interesting:true lastTimestamp:2025-09-02T07:07:22Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-1309 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:07:00Z interesting:true lastTimestamp:2025-09-02T07:07:23Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:21 firstTimestamp:2025-09-02T07:04:15Z interesting:true lastTimestamp:2025-09-02T07:07:35Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:07:18Z interesting:true lastTimestamp:2025-09-02T07:07:37Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:07:18Z interesting:true lastTimestamp:2025-09-02T07:07:38Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:07:18Z interesting:true lastTimestamp:2025-09-02T07:07:39Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:07:18Z interesting:true lastTimestamp:2025-09-02T07:07:40Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-4855 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:07:18Z interesting:true lastTimestamp:2025-09-02T07:07:41Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:22 firstTimestamp:2025-09-02T07:04:15Z interesting:true lastTimestamp:2025-09-02T07:07:45Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:21 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:07:49Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:07:33Z interesting:true lastTimestamp:2025-09-02T07:07:52Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:07:33Z interesting:true lastTimestamp:2025-09-02T07:07:53Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:07:33Z interesting:true lastTimestamp:2025-09-02T07:07:54Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:07:33Z interesting:true lastTimestamp:2025-09-02T07:07:55Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:23 firstTimestamp:2025-09-02T07:04:15Z interesting:true lastTimestamp:2025-09-02T07:07:55Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-statefulset-2871 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:ss-1]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:07:33Z interesting:true lastTimestamp:2025-09-02T07:07:56Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:22 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:07:59Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:24 firstTimestamp:2025-09-02T07:04:15Z interesting:true lastTimestamp:2025-09-02T07:08:05Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:23 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:08:09Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-268 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:25 firstTimestamp:2025-09-02T07:04:15Z interesting:true lastTimestamp:2025-09-02T07:08:15Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:24 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:08:19Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:21 firstTimestamp:2025-09-02T07:08:06Z interesting:true lastTimestamp:2025-09-02T07:08:25Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:85ac5414e3 namespace:e2e-statefulset-4221 node:ci-op-0k0qibps-871dd-dt55f-worker-a-nw4ts pod:ss-1]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 404 map[count:22 firstTimestamp:2025-09-02T07:08:06Z interesting:true lastTimestamp:2025-09-02T07:08:26Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:21 firstTimestamp:2025-09-02T07:08:09Z interesting:true lastTimestamp:2025-09-02T07:08:28Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:22 firstTimestamp:2025-09-02T07:08:09Z interesting:true lastTimestamp:2025-09-02T07:08:29Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:773222eaca namespace:e2e-services-5413 node:ci-op-0k0qibps-871dd-dt55f-worker-b-v6m2s pod:webserver-pod]}" message="{Unhealthy Readiness probe failed: HTTP probe failed with statuscode: 503 map[count:25 firstTimestamp:2025-09-02T07:04:29Z interesting:true lastTimestamp:2025-09-02T07:08:29Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:23 firstTimestamp:2025-09-02T07:08:09Z interesting:true lastTimestamp:2025-09-02T07:08:30Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:24 firstTimestamp:2025-09-02T07:08:09Z interesting:true lastTimestamp:2025-09-02T07:08:31Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:37Z" level=info msg="duplicated event allowed by KubeletUnhealthyReadinessProbeFailed" locator="{Kind map[hmsg:e7a751a213 namespace:e2e-port-forwarding-7854 node:ci-op-0k0qibps-871dd-dt55f-worker-c-zx9j2 pod:pfpod]}" message="{Unhealthy Readiness probe failed: map[count:25 firstTimestamp:2025-09-02T07:08:09Z interesting:true lastTimestamp:2025-09-02T07:08:32Z pathological:true reason:Unhealthy]}" +time="2025-09-02T07:48:48Z" level=info msg="filtered down to 82 pending intervals" +time="2025-09-02T07:48:48Z" level=info msg="filtered down to 3 firing intervals" + I0902 07:48:48.245582 925 alerts.go:221] Alerts were detected which are allowed: + + V2 alert ExtremelyHighIndividualControlPlaneCPU pending for 1m28s seconds with labels: alertstate/pending severity/critical ALERTS{alertname="ExtremelyHighIndividualControlPlaneCPU", alertstate="pending", instance="ci-op-0k0qibps-871dd-dt55f-master-2", namespace="openshift-kube-apiserver", prometheus="openshift-monitoring/k8s", severity="critical"} result=allow (high CPU utilization during e2e runs is normal) + V2 alert ExtremelyHighIndividualControlPlaneCPU pending for 1m28s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="ExtremelyHighIndividualControlPlaneCPU", alertstate="pending", instance="ci-op-0k0qibps-871dd-dt55f-master-2", namespace="openshift-kube-apiserver", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (high CPU utilization during e2e runs is normal) + V2 alert ExtremelyHighIndividualControlPlaneCPU pending for 28s seconds with labels: alertstate/pending severity/critical ALERTS{alertname="ExtremelyHighIndividualControlPlaneCPU", alertstate="pending", instance="ci-op-0k0qibps-871dd-dt55f-master-0", namespace="openshift-kube-apiserver", prometheus="openshift-monitoring/k8s", severity="critical"} result=allow (high CPU utilization during e2e runs is normal) + V2 alert ExtremelyHighIndividualControlPlaneCPU pending for 28s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="ExtremelyHighIndividualControlPlaneCPU", alertstate="pending", instance="ci-op-0k0qibps-871dd-dt55f-master-0", namespace="openshift-kube-apiserver", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (high CPU utilization during e2e runs is normal) + V2 alert HighOverallControlPlaneCPU fired for 58s seconds with labels: alertstate/firing severity/warning ALERTS{alertname="HighOverallControlPlaneCPU", alertstate="firing", namespace="openshift-kube-apiserver", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (high CPU utilization during e2e runs is normal) + V2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="KubePodNotReady", alertstate="pending", namespace="default", pod="verify-all-openshiftredhatmarketplace-nwmw5-lgvzx", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (has a separate e2e test) + V2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="KubePodNotReady", alertstate="pending", namespace="openshift-marketplace", pod="redhat-operators-6wrq2", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (has a separate e2e test) + V2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="KubePodNotReady", alertstate="pending", namespace="openshift-marketplace", pod="redhat-operators-l9lvw", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (has a separate e2e test) + V2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="KubePodNotReady", alertstate="pending", namespace="openshift-marketplace", pod="redhat-operators-v77fp", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (has a separate e2e test) + V2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname="KubePodNotReady", alertstate="pending", namespace="openshift-operators", pod="servicemesh-operator3-55f49c5f94-4qf4g", prometheus="openshift-monitoring/k8s", severity="warning"} result=allow (has a separate e2e test) +time="2025-09-02T07:48:48Z" level=info msg="Alerts were detected which are allowed:\n\nV2 alert ExtremelyHighIndividualControlPlaneCPU pending for 1m28s seconds with labels: alertstate/pending severity/critical ALERTS{alertname=\"ExtremelyHighIndividualControlPlaneCPU\", alertstate=\"pending\", instance=\"ci-op-0k0qibps-871dd-dt55f-master-2\", namespace=\"openshift-kube-apiserver\", prometheus=\"openshift-monitoring/k8s\", severity=\"critical\"} result=allow (high CPU utilization during e2e runs is normal)\nV2 alert ExtremelyHighIndividualControlPlaneCPU pending for 1m28s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"ExtremelyHighIndividualControlPlaneCPU\", alertstate=\"pending\", instance=\"ci-op-0k0qibps-871dd-dt55f-master-2\", namespace=\"openshift-kube-apiserver\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (high CPU utilization during e2e runs is normal)\nV2 alert ExtremelyHighIndividualControlPlaneCPU pending for 28s seconds with labels: alertstate/pending severity/critical ALERTS{alertname=\"ExtremelyHighIndividualControlPlaneCPU\", alertstate=\"pending\", instance=\"ci-op-0k0qibps-871dd-dt55f-master-0\", namespace=\"openshift-kube-apiserver\", prometheus=\"openshift-monitoring/k8s\", severity=\"critical\"} result=allow (high CPU utilization during e2e runs is normal)\nV2 alert ExtremelyHighIndividualControlPlaneCPU pending for 28s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"ExtremelyHighIndividualControlPlaneCPU\", alertstate=\"pending\", instance=\"ci-op-0k0qibps-871dd-dt55f-master-0\", namespace=\"openshift-kube-apiserver\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (high CPU utilization during e2e runs is normal)\nV2 alert HighOverallControlPlaneCPU fired for 58s seconds with labels: alertstate/firing severity/warning ALERTS{alertname=\"HighOverallControlPlaneCPU\", alertstate=\"firing\", namespace=\"openshift-kube-apiserver\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (high CPU utilization during e2e runs is normal)\nV2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"KubePodNotReady\", alertstate=\"pending\", namespace=\"default\", pod=\"verify-all-openshiftredhatmarketplace-nwmw5-lgvzx\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (has a separate e2e test)\nV2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"KubePodNotReady\", alertstate=\"pending\", namespace=\"openshift-marketplace\", pod=\"redhat-operators-6wrq2\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (has a separate e2e test)\nV2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"KubePodNotReady\", alertstate=\"pending\", namespace=\"openshift-marketplace\", pod=\"redhat-operators-l9lvw\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (has a separate e2e test)\nV2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"KubePodNotReady\", alertstate=\"pending\", namespace=\"openshift-marketplace\", pod=\"redhat-operators-v77fp\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (has a separate e2e test)\nV2 alert KubePodNotReady pending for 58s seconds with labels: alertstate/pending severity/warning ALERTS{alertname=\"KubePodNotReady\", alertstate=\"pending\", namespace=\"openshift-operators\", pod=\"servicemesh-operator3-55f49c5f94-4qf4g\", prometheus=\"openshift-monitoring/k8s\", severity=\"warning\"} result=allow (has a separate e2e test)" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=image-registry-new-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=image-registry-reused-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" + I0902 07:48:48.571178 925 handle_operator_watch_count_tracking.go:468] operator=ingress-operator, watchrequestcount=421, upperbound=950, ratio=0.44 + I0902 07:48:48.571249 925 handle_operator_watch_count_tracking.go:458] Operator cluster-network-operator not found in upper bounds for GCP + I0902 07:48:48.571271 925 handle_operator_watch_count_tracking.go:459] operator=system:serviceaccount:openshift-network-operator:cluster-network-operator, watchrequestcount=191 + I0902 07:48:48.571297 925 handle_operator_watch_count_tracking.go:468] operator=authentication-operator, watchrequestcount=172, upperbound=698, ratio=0.25 + I0902 07:48:48.571316 925 handle_operator_watch_count_tracking.go:468] operator=cluster-storage-operator, watchrequestcount=139, upperbound=428, ratio=0.32 + I0902 07:48:48.571340 925 handle_operator_watch_count_tracking.go:468] operator=kube-apiserver-operator, watchrequestcount=120, upperbound=520, ratio=0.23 + I0902 07:48:48.571359 925 handle_operator_watch_count_tracking.go:468] operator=console-operator, watchrequestcount=107, upperbound=330, ratio=0.32 + I0902 07:48:48.571378 925 handle_operator_watch_count_tracking.go:468] operator=openshift-controller-manager-operator, watchrequestcount=103, upperbound=420, ratio=0.25 + I0902 07:48:48.571395 925 handle_operator_watch_count_tracking.go:468] operator=kube-controller-manager-operator, watchrequestcount=102, upperbound=366, ratio=0.28 + I0902 07:48:48.571415 925 handle_operator_watch_count_tracking.go:468] operator=prometheus-operator, watchrequestcount=89, upperbound=254, ratio=0.35 + I0902 07:48:48.571436 925 handle_operator_watch_count_tracking.go:468] operator=cloud-credential-operator, watchrequestcount=84, upperbound=230, ratio=0.37 + I0902 07:48:48.571462 925 handle_operator_watch_count_tracking.go:468] operator=openshift-apiserver-operator, watchrequestcount=81, upperbound=568, ratio=0.14 + I0902 07:48:48.571479 925 handle_operator_watch_count_tracking.go:468] operator=openshift-kube-scheduler-operator, watchrequestcount=79, upperbound=420, ratio=0.19 + I0902 07:48:48.571502 925 handle_operator_watch_count_tracking.go:468] operator=cluster-node-tuning-operator, watchrequestcount=78, upperbound=224, ratio=0.35 + I0902 07:48:48.571521 925 handle_operator_watch_count_tracking.go:468] operator=etcd-operator, watchrequestcount=75, upperbound=440, ratio=0.17 + I0902 07:48:48.571541 925 handle_operator_watch_count_tracking.go:468] operator=cluster-baremetal-operator, watchrequestcount=62, upperbound=250, ratio=0.25 + I0902 07:48:48.571568 925 handle_operator_watch_count_tracking.go:468] operator=dns-operator, watchrequestcount=62, upperbound=160, ratio=0.39 + I0902 07:48:48.571592 925 handle_operator_watch_count_tracking.go:468] operator=service-ca-operator, watchrequestcount=60, upperbound=226, ratio=0.27 + I0902 07:48:48.571611 925 handle_operator_watch_count_tracking.go:468] operator=cluster-image-registry-operator, watchrequestcount=53, upperbound=242, ratio=0.22 + I0902 07:48:48.571631 925 handle_operator_watch_count_tracking.go:468] operator=gcp-pd-csi-driver-operator, watchrequestcount=52, upperbound=228, ratio=0.23 + I0902 07:48:48.571656 925 handle_operator_watch_count_tracking.go:458] Operator machine-config-operator not found in upper bounds for GCP + I0902 07:48:48.571677 925 handle_operator_watch_count_tracking.go:459] operator=system:serviceaccount:openshift-machine-config-operator:machine-config-operator, watchrequestcount=51 + I0902 07:48:48.571699 925 handle_operator_watch_count_tracking.go:468] operator=openshift-config-operator, watchrequestcount=44, upperbound=110, ratio=0.4 + I0902 07:48:48.571711 925 handle_operator_watch_count_tracking.go:468] operator=machine-api-operator, watchrequestcount=41, upperbound=104, ratio=0.39 + I0902 07:48:48.571723 925 handle_operator_watch_count_tracking.go:468] operator=cluster-autoscaler-operator, watchrequestcount=39, upperbound=108, ratio=0.36 + I0902 07:48:48.571781 925 handle_operator_watch_count_tracking.go:468] operator=cluster-monitoring-operator, watchrequestcount=33, upperbound=386, ratio=0.09 + I0902 07:48:48.571861 925 handle_operator_watch_count_tracking.go:458] Operator cluster-olm-operator not found in upper bounds for GCP + I0902 07:48:48.571882 925 handle_operator_watch_count_tracking.go:459] operator=system:serviceaccount:openshift-cluster-olm-operator:cluster-olm-operator, watchrequestcount=32 + I0902 07:48:48.571902 925 handle_operator_watch_count_tracking.go:458] Operator control-plane-machine-set-operator not found in upper bounds for GCP + I0902 07:48:48.571914 925 handle_operator_watch_count_tracking.go:459] operator=system:serviceaccount:openshift-machine-api:control-plane-machine-set-operator, watchrequestcount=30 + I0902 07:48:48.571929 925 handle_operator_watch_count_tracking.go:468] operator=csi-snapshot-controller-operator, watchrequestcount=27, upperbound=180, ratio=0.15 + I0902 07:48:48.571943 925 handle_operator_watch_count_tracking.go:468] operator=kube-storage-version-migrator-operator, watchrequestcount=25, upperbound=260, ratio=0.1 + I0902 07:48:48.571957 925 handle_operator_watch_count_tracking.go:468] operator=cluster-samples-operator, watchrequestcount=24, upperbound=58, ratio=0.41 + I0902 07:48:48.571971 925 handle_operator_watch_count_tracking.go:468] operator=marketplace-operator, watchrequestcount=11, upperbound=38, ratio=0.29 + I0902 07:48:48.598213 925 monitortest.go:180] monitor[EtcdLogAnalyzer]: found 3 intervals of interest +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-new-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-reused-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-kube-api-new-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-kube-api-reused-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-new-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-reused-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-openshift-api-new-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-openshift-api-reused-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=oauth-api-new-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:48Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=oauth-api-reused-connections +time="2025-09-02T07:48:48Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:48Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:49Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-oauth-api-new-connections +time="2025-09-02T07:48:49Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:49Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:49Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-oauth-api-reused-connections +time="2025-09-02T07:48:49Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:49Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:49Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-oauth-server-new-connections +time="2025-09-02T07:48:49Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:49Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:49Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-oauth-server-reused-connections +time="2025-09-02T07:48:49Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:49Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:49Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-console-new-connections +time="2025-09-02T07:48:49Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:49Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:49Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-console-reused-connections +time="2025-09-02T07:48:49Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:49Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:55Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=service-load-balancer-with-pdb-new-connections +time="2025-09-02T07:48:55Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:55Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:55Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=service-load-balancer-with-pdb-reused-connections +time="2025-09-02T07:48:55Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:55Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" + I0902 07:48:55.056849 925 monitortest.go:60] monitor[staicpod-install-monitor]: found 23 intervals of interest +time="2025-09-02T07:48:55Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=metrics-api-new-connections +time="2025-09-02T07:48:55Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:55Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:48:55Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=metrics-api-reused-connections +time="2025-09-02T07:48:55Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:48:55Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +Cleaning up. +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=image-registry-availability + I0902 07:48:55.600469 925 monitortest.go:186] Deleting route: test-disruption-8288d took 0.01 seconds +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=apiserver-incluster-availability +time="2025-09-02T07:48:55Z" level=info msg="removing monitoring namespace" func=Cleanup monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:55Z" level=info msg="Namespace e2e-disruption-monitor-mp425 removed" func=Cleanup monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:55Z" level=info msg="removing monitoring cluster roles and bindings" func=Cleanup monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:55Z" level=info msg="CRB e2e-disruption-monitor-privileged-ptpb5 removed" func=Cleanup monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:55Z" level=info msg="Role e2e-disruption-monitor removed" func=Cleanup monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:55Z" level=info msg="collect data completed" func=Cleanup monitorTest=apiserver-incluster-availability namespace=e2e-disruption-monitor-mp425 +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=legacy-storage-invariants +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=graceful-shutdown-analyzer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=external-service-availability +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=external-azure-cloud-service-availability +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=kubelet-container-restarts +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=audit-log-analyzer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=on-prem-keepalived +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=external-gcp-cloud-service-availability +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=interval-serializer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=termination-message-policy +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=etcd-log-analyzer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=apiserver-external-availability +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=ingress-availability +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=alert-summary-serializer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=disruption-summary-serializer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=apiserver-disruption-invariant +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=generation-analyzer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=legacy-node-invariants +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=operator-state-analyzer +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=external-aws-cloud-service-availability +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=event-collector +time="2025-09-02T07:48:55Z" level=info msg="beginning cleanup" monitorTest=service-type-load-balancer-availability +time="2025-09-02T07:48:55Z" level=info msg="deleting namespace" monitorTest=service-type-load-balancer-availability namespace=e2e-service-lb-test-bbv8s +time="2025-09-02T07:48:55Z" level=info msg="waiting for namespace deletion to complete" monitorTest=service-type-load-balancer-availability namespace=e2e-service-lb-test-bbv8s +time="2025-09-02T07:51:25Z" level=info msg="namespace deleted in 150.01 seconds" monitorTest=service-type-load-balancer-availability namespace=e2e-service-lb-test-bbv8s +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=staicpod-install-monitor +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=lease-checker +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=pod-lifecycle +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=tracked-resources-serializer +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=node-state-analyzer +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=metrics-api-availability +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=known-image-checker +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=legacy-authentication-invariants +time="2025-09-02T07:51:25Z" level=info msg="beginning cleanup" monitorTest=pod-network-avalibility + I0902 07:52:25.714110 925 monitortest.go:313] Deleting namespace: e2e-pod-network-disruption-test-rr5t5 took 60.02 seconds +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=kubelet-log-collector +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=initial-and-final-operator-log-scraper +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=legacy-etcd-invariants +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=node-lifecycle +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=monitoring-statefulsets-recreation +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=azure-metrics-collector +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=required-scc-annotation-checker +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=watch-namespaces +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=high-cpu-metric-collector +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=on-prem-haproxy +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=timeline-serializer +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=cluster-info-serializer +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=oc-adm-upgrade-status +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=legacy-cvo-invariants +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=metrics-endpoints-down +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=api-unreachable-from-client-metrics +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=faulty-load-balancer +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=clusteroperator-collector +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=machine-lifecycle +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=high-cpu-test-analyzer +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=pathological-event-analyzer +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=legacy-networking-invariants +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=legacy-kube-apiserver-invariants +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=additional-events-collector +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=e2e-test-analyzer +time="2025-09-02T07:52:25Z" level=info msg="beginning cleanup" monitorTest=legacy-test-framework-invariants +Serializing results. +Writing to storage. + m.startTime = 2025-09-02 06:55:57.789325908 +0000 UTC m=+190.619040517 + m.stopTime = 2025-09-02 07:48:31.600887164 +0000 UTC m=+3344.430601764 +Processing monitorTest: oc-adm-upgrade-status + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-cvo-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: metrics-endpoints-down + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: api-unreachable-from-client-metrics + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: faulty-load-balancer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: clusteroperator-collector + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: machine-lifecycle + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: high-cpu-test-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +time="2025-09-02T07:52:25Z" level=info msg="High CPU correlated tests: 259 successful, 116 failed" +Processing monitorTest: pathological-event-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-networking-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-kube-apiserver-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: additional-events-collector + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: e2e-test-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-test-framework-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: image-registry-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: apiserver-incluster-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-storage-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: graceful-shutdown-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: external-service-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: external-azure-cloud-service-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: kubelet-container-restarts + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: audit-log-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: on-prem-keepalived + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: external-gcp-cloud-service-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: interval-serializer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: termination-message-policy + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: etcd-log-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: apiserver-external-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: ingress-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: alert-summary-serializer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: disruption-summary-serializer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: apiserver-disruption-invariant + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: generation-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-node-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: operator-state-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: external-aws-cloud-service-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: event-collector + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: service-type-load-balancer-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: staicpod-install-monitor + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: lease-checker + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: pod-lifecycle + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: tracked-resources-serializer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: node-state-analyzer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: metrics-api-availability + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: known-image-checker + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-authentication-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: pod-network-avalibility + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: kubelet-log-collector + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: initial-and-final-operator-log-scraper + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: legacy-etcd-invariants + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: node-lifecycle + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: monitoring-statefulsets-recreation + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: azure-metrics-collector + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: required-scc-annotation-checker + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: watch-namespaces + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: high-cpu-metric-collector + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: on-prem-haproxy + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: timeline-serializer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Processing monitorTest: cluster-info-serializer + finalIntervals size = 112979 + first interval time: From = 2025-09-02 06:08:25 +0000 UTC; To = 2025-09-02 06:59:00.557619933 +0000 UTC m=+373.387334543 + last interval time: From = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063; To = 2025-09-02 07:47:52.765082453 +0000 UTC m=+3305.594797063 +Writing junits. +Writing JUnit report to /logs/artifacts/junit/e2e-monitor-tests__20250902-065257.xml +Blocking test failures: + + * [sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should block cluster upgrades if an incompatible operator is installed + +Writing JUnit report to /logs/artifacts/junit/junit_e2e__20250902-065257.xml + +Writing extension test results JSON to /logs/artifacts/junit/extension_test_result_e2e__20250902-065257.json +Suite run returned error: 1 blocking fail, 0 informing fail, 1624 pass, 1894 skip (54m23s) +error: error running a test suite: 1 blocking fail, 0 informing fail, 1624 pass, 1894 skip (54m23s) +Requesting risk analysis for test failures in this job run from sippy: +I0902 07:52:43.691595 116465 factory.go:195] Registered Plugin "containerd" + I0902 07:52:43.719217 116465 i18n.go:119] Couldn't find the LC_ALL, LC_MESSAGES or LANG environment variables, defaulting to en_US + I0902 07:52:43.719268 116465 i18n.go:157] Setting language to default +time="2025-09-02T07:52:43Z" level=warning msg="ENABLE_STORAGE_GCE_PD_DRIVER is set, but is not supported" +openshift-tests 4.21.0-202509012026.p2.gf90f90a.assembly.stream.el9-f90f90a +time="2025-09-02T07:52:44Z" level=info msg="Scanning for test-failures-summary files in: /logs/artifacts/junit" +time="2025-09-02T07:52:44Z" level=info msg="Found files: [/logs/artifacts/junit/test-failures-summary_20250902-065257.json /logs/artifacts/junit/test-failures-summary_monitor_20250902-065257.json]" +time="2025-09-02T07:52:44Z" level=info msg="Requesting risk analysis (attempt 1/4) from: " +time="2025-09-02T07:52:46Z" level=info msg="Call to sippy finished after: 2.366139 seconds" +time="2025-09-02T07:52:46Z" level=info msg="response Body:{\"ProwJobName\":\"periodic-ci-openshift-multiarch-master-nightly-4.21-ocp-e2e-gcp-ovn-multi-x-ax\",\"ProwJobRunID\":1962754869517357056,\"Release\":\"4.21\",\"CompareRelease\":\"4.21\",\"Tests\":[{\"Name\":\"[sig-olmv1][OCPFeatureGate:NewOLM][Skipped:Disconnected] OLMv1 operator installation should block cluster upgrades if an incompatible operator is installed\",\"TestID\":0,\"Risk\":{\"Level\":{\"Name\":\"Medium\",\"Level\":50},\"Reasons\":[\"This test has passed 97.37% of 38 runs on jobs [periodic-ci-openshift-multiarch-master-nightly-4.21-ocp-e2e-gcp-ovn-multi-x-ax periodic-ci-openshift-multiarch-master-nightly-4.20-ocp-e2e-gcp-ovn-multi-x-ax] in the last 14 days.\"],\"CurrentRuns\":38,\"CurrentPasses\":37,\"CurrentPassPercentage\":97.36842105263158},\"OpenBugs\":[{\"id\":17229816,\"key\":\"OCPBUGS-60574\",\"created_at\":\"2025-08-17T13:09:33.195146Z\",\"updated_at\":\"2025-09-02T07:13:00.523575Z\",\"deleted_at\":null,\"status\":\"ASSIGNED\",\"last_change_time\":\"2025-08-20T06:29:18Z\",\"summary\":\"Component Readiness: [OLM] [OCPFeatureGate:NewOLM] Newly added test failing\",\"affects_versions\":[\"4.20\"],\"fix_versions\":[\"4.20\"],\"target_versions\":null,\"components\":[\"OLM\"],\"labels\":[\"component-regression\",\"olmv1\",\"triaged\"],\"url\":\"https://issues.redhat.com/browse/OCPBUGS-60574\"}]}],\"OverallRisk\":{\"Level\":{\"Name\":\"Medium\",\"Level\":50},\"Reasons\":[\"Maximum failed test risk: Medium\"],\"JobRunTestCount\":5458,\"JobRunTestFailures\":1,\"NeverStableJob\":false,\"HistoricalRunTestCount\":3174},\"OpenBugs\":[]}\n" +time="2025-09-02T07:52:46Z" level=info msg="Successfully wrote: /logs/artifacts/junit/risk-analysis.json" +time="2025-09-02T07:52:46Z" level=info msg="Checking disruption results for job type" jobType="{4.21 gcp amd64 ovn ha}" +time="2025-09-02T07:52:46Z" level=info msg="Found files: [/logs/artifacts/junit/backend-disruption_20250902-065257.json]" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-openshift-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-console-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http1-localhost-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http1-localhost-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http2-localhost-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http2-service-network-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=aws-network-liveness-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ci-cluster-network-liveness-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=metrics-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=service-load-balancer-with-pdb-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-kube-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=host-to-pod-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http2-internal-lb-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=pod-to-service-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http1-service-network-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=pod-to-host-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=metrics-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-service-network-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=pod-to-host-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=image-registry-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-console-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-kube-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-openshift-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http1-internal-lb-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=host-to-host-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=host-to-service-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=service-load-balancer-with-pdb-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=oauth-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ci-cluster-network-liveness-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-oauth-server-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http2-internal-lb-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=pod-to-pod-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http1-internal-lb-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=ingress-to-oauth-server-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=gcp-network-liveness-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=aws-network-liveness-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=azure-network-liveness-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=host-to-service-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=pod-to-service-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-internal-lb-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-internal-lb-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-localhost-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=pod-to-pod-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=azure-network-liveness-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=gcp-network-liveness-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=image-registry-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http1-service-network-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-localhost-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http2-localhost-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=oauth-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-oauth-api-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=host-to-host-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=cache-oauth-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=host-to-pod-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=kube-api-http2-service-network-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-service-network-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +{"component":"entrypoint","error":"wrapped process failed: exit status 1","file":"sigs.k8s.io/prow/pkg/entrypoint/run.go:84","func":"sigs.k8s.io/prow/pkg/entrypoint.Options.internalRun","level":"error","msg":"Error executing test process","severity":"error","time":"2025-09-02T07:52:46Z"} +error: failed to execute wrapped command: exit status 1 +INFO[2025-09-02T07:52:48Z] Step ocp-e2e-gcp-ovn-multi-x-ax-openshift-e2e-test failed after 1h3m10s. +INFO[2025-09-02T07:52:48Z] Step phase test failed after 1h12m27s. +INFO[2025-09-02T07:52:48Z] Running multi-stage phase post +INFO[2025-09-02T07:52:48Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-gather-network. +INFO[2025-09-02T07:56:08Z] Step ocp-e2e-gcp-ovn-multi-x-ax-gather-network succeeded after 3m20s. +INFO[2025-09-02T07:56:08Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-gather-core-dump. +INFO[2025-09-02T07:56:28Z] Step ocp-e2e-gcp-ovn-multi-x-ax-gather-core-dump succeeded after 20s. +INFO[2025-09-02T07:56:28Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-gather-must-gather. +INFO[2025-09-02T07:59:47Z] Step ocp-e2e-gcp-ovn-multi-x-ax-gather-must-gather succeeded after 3m18s. +INFO[2025-09-02T07:59:47Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-gather-extra. +INFO[2025-09-02T08:08:02Z] Step ocp-e2e-gcp-ovn-multi-x-ax-gather-extra succeeded after 8m15s. +INFO[2025-09-02T08:08:02Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-gather-audit-logs. +INFO[2025-09-02T08:08:59Z] Step ocp-e2e-gcp-ovn-multi-x-ax-gather-audit-logs succeeded after 56s. +INFO[2025-09-02T08:08:59Z] Running step ocp-e2e-gcp-ovn-multi-x-ax-ipi-deprovision-deprovision. +INFO[2025-09-02T08:19:05Z] Step ocp-e2e-gcp-ovn-multi-x-ax-ipi-deprovision-deprovision succeeded after 10m5s. +INFO[2025-09-02T08:19:05Z] Step phase post succeeded after 26m17s. +INFO[2025-09-02T08:19:05Z] Releasing leases for test ocp-e2e-gcp-ovn-multi-x-ax +INFO[2025-09-02T08:19:05Z] Ran for 2h28m55s +ERRO[2025-09-02T08:19:05Z] Some steps failed: +ERRO[2025-09-02T08:19:05Z] + * could not run steps: step ocp-e2e-gcp-ovn-multi-x-ax failed: "ocp-e2e-gcp-ovn-multi-x-ax" test steps failed: "ocp-e2e-gcp-ovn-multi-x-ax" pod "ocp-e2e-gcp-ovn-multi-x-ax-openshift-e2e-test" failed: could not watch pod: the pod ci-op-0k0qibps/ocp-e2e-gcp-ovn-multi-x-ax-openshift-e2e-test failed after 1h3m9s (failed containers: test): ContainerFailed one or more containers exited + +Container test exited with code 1, reason Error +--- +h, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-http2-service-network-reused-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +time="2025-09-02T07:52:46Z" level=info msg="searching for bestMatch for {Release:4.21 FromRelease: Platform:gcp Architecture:amd64 Network:ovn Topology:ha}" backend=openshift-api-new-connections +time="2025-09-02T07:52:46Z" level=info msg="historicalData has 7634 entries" +time="2025-09-02T07:52:46Z" level=warning msg="no exact or fuzzy match, no results will be returned, test will be skipped" +time="2025-09-02T07:52:46Z" level=warning msg="no historical data found for job run: " details="(no exact or fuzzy match for jobType=platformidentification.JobType{Release:\"4.21\", FromRelease:\"\", Platform:\"gcp\", Architecture:\"amd64\", Network:\"ovn\", Topology:\"ha\"})" +{"component":"entrypoint","error":"wrapped process failed: exit status 1","file":"sigs.k8s.io/prow/pkg/entrypoint/run.go:84","func":"sigs.k8s.io/prow/pkg/entrypoint.Options.internalRun","level":"error","msg":"Error executing test process","severity":"error","time":"2025-09-02T07:52:46Z"} +error: failed to execute wrapped command: exit status 1 +--- +Link to step on registry info site: https://steps.ci.openshift.org/reference/openshift-e2e-test +Link to job on registry info site: https://steps.ci.openshift.org/job?org=openshift&repo=multiarch&branch=master&test=ocp-e2e-gcp-ovn-multi-x-ax&variant=nightly-4.21 +INFO[2025-09-02T08:19:05Z] Reporting job state 'failed' with reason 'executing_graph:step_failed:utilizing_lease:executing_test:executing_multi_stage_test' \ No newline at end of file diff --git a/sub_agents/installation_analyst/test_artifacts/failing-build-log.txt b/sub_agents/installation_analyst/test_artifacts/failing-build-log.txt new file mode 100644 index 0000000..5162693 --- /dev/null +++ b/sub_agents/installation_analyst/test_artifacts/failing-build-log.txt @@ -0,0 +1,12 @@ +INFO[2025-09-02T05:50:01Z] ci-operator version v20250901-d01622205 +INFO[2025-09-02T05:50:01Z] Loading configuration from https://config.ci.openshift.org for openshift/multiarch@master [nightly-4.21-upgrade-from-stable-4.20] +INFO[2025-09-02T05:50:01Z] Resolved SHA missing for master in https://github.com/openshift/multiarch (will prevent caching) +WARN[2025-09-02T05:50:01Z] skipped directory "..2025_09_02_05_49_55.3622197964" when creating secret from directory "/secrets/ci-pull-credentials" +INFO[2025-09-02T05:50:01Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4.21.0-0.nightly-multi/latest +INFO[2025-09-02T05:50:01Z] Resolved release latest to quay.io/openshift-release-dev/ocp-release-nightly@sha256:41d79805fcf07d276343d882b462ba834e3eb85f541c62008a88bee820958213 +INFO[2025-09-02T05:50:01Z] Requesting a release from https://multi.ocp.releases.ci.openshift.org/api/v1/releasestream/4-stable-multi/latest?in=%3E4.20.0-0+%3C4.21.0-0 +INFO[2025-09-02T05:50:01Z] Ran for 0s +ERRO[2025-09-02T05:50:01Z] Some steps failed: +ERRO[2025-09-02T05:50:01Z] + * could not resolve inputs: could not determine inputs for step [release:initial]: failed to resolve release initial: failed to request latest release: server responded with 404: no tags exist within the release that satisfy the request +INFO[2025-09-02T05:50:01Z] Reporting job state 'failed' with reason 'resolving_inputs:resolving_release' \ No newline at end of file diff --git a/sub_agents/installation_analyst/test_artifacts/install-build-log.txt b/sub_agents/installation_analyst/test_artifacts/install-build-log.txt new file mode 100644 index 0000000..153dfb2 --- /dev/null +++ b/sub_agents/installation_analyst/test_artifacts/install-build-log.txt @@ -0,0 +1,254 @@ +Installing from release registry.build03.ci.openshift.org/ci-op-i1xhw661/release@sha256:3b8516fb6f45f612d9612a3524b20abf3e8922422e35499321ff06b5e6b13866 +install-config.yaml +------------------- +apiVersion: v1 +metadata: + name: ci-op-i1xhw661-ac6cc + +sshKey: | + XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX +controlPlane: + platform: + aws: + zones: + - us-west-2c + - us-west-2b + type: m6a.xlarge + architecture: amd64 + name: master + replicas: 3 +compute: +- platform: + aws: + zones: + - us-west-2c + - us-west-2b + type: m6a.xlarge + architecture: amd64 + name: worker + replicas: 3 +baseDomain: origin-ci-int-aws.dev.rhcloud.com +platform: + aws: + region: us-west-2 + userTags: + expirationDate: 2025-08-28T14:57+00:00 + clusterName: ci-op-i1xhw661-ac6cc + ci-nat-replace: "false" +=============== openshift-install version ============== +openshift-install v4.20.0 +built from commit 26d807e98014ca0c26bf4d0f219a3aaed2cd5405 +release image registry.ci.openshift.org/origin/release:4.20 +level=warning msg=Found override for release image (registry.build03.ci.openshift.org/ci-op-i1xhw661/release@sha256:3b8516fb6f45f612d9612a3524b20abf3e8922422e35499321ff06b5e6b13866). Release Image Architecture is unknown +release architecture unknown +default architecture amd64 +level=warning msg=Found override for release image (registry.build03.ci.openshift.org/ci-op-i1xhw661/release@sha256:3b8516fb6f45f612d9612a3524b20abf3e8922422e35499321ff06b5e6b13866). Release Image Architecture is unknown +level=info msg=Credentials loaded from the "default" profile in file "/var/run/secrets/ci.openshift.io/cluster-profile/.awscred" +level=info msg=Consuming Install Config from target directory +level=info msg=Successfully populated MCS CA cert information: root-ca 2035-08-26T06:58:23Z 2025-08-28T06:58:23Z +level=info msg=Successfully populated MCS TLS cert information: root-ca 2035-08-26T06:58:23Z 2025-08-28T06:58:23Z +level=info msg=Adding clusters... +level=info msg=Manifests created in: /tmp/installer/cluster-api, /tmp/installer/manifests and /tmp/installer/openshift +Release payload version: 4.20.0-0.nightly-multi-2025-08-27-070633 +This is likely an upgrade job (OPENSHIFT_INSTALL_RELEASE_IMAGE_OVERRIDE differs from nonempty OPENSHIFT_UPGRADE_RELEASE_IMAGE_OVERRIDE) +Cluster cannot query OpenShift Update Service (OSUS/Cincinnati), cleaning the channel +Will include manifests: +/tmp/secret/manifest_creds.yml +/tmp/secret/manifest_eventexporter_sa.yml +/tmp/secret/manifest_cluster-monitoring-config.yaml +/tmp/secret/manifest_sa.yml +/tmp/secret/manifest_oauth_role.yml +/tmp/secret/manifest_eventexporter_deployment.yml +/tmp/secret/manifest_clusterrole.yml +/tmp/secret/manifest_metrics_role.yml +/tmp/secret/manifest_clusterrolebinding.yml +/tmp/secret/manifest_01_ns.yml +/tmp/secret/manifest_oauth_clusterrolebinding.yml +/tmp/secret/manifest_ds.yml +/tmp/secret/manifest_metrics_rb.yml +/tmp/secret/manifest_eventexporter_crb.yml +/tmp/secret/manifest_promtail_service.yml +/tmp/secret/manifest_promtail_cookie_secret.yml +/tmp/secret/manifest_eventexporter_config.yml +/tmp/secret/manifest_cm.yml +/tmp/secret/manifest_metrics.yml +Will include following openshift config files: +'/tmp/installer' -> '/tmp/install-orig' +'/tmp/installer/openshift' -> '/tmp/install-orig/openshift' +'/tmp/installer/openshift/99_openshift-cluster-api_master-user-data-secret.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_master-user-data-secret.yaml' +'/tmp/installer/openshift/99_openshift-machineconfig_99-master-ssh.yaml' -> '/tmp/install-orig/openshift/99_openshift-machineconfig_99-master-ssh.yaml' +'/tmp/installer/openshift/99_openshift-cluster-api_master-machines-0.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_master-machines-0.yaml' +'/tmp/installer/openshift/99_openshift-cluster-api_master-machines-1.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_master-machines-1.yaml' +'/tmp/installer/openshift/99_openshift-cluster-api_master-machines-2.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_master-machines-2.yaml' +'/tmp/installer/openshift/99_openshift-machine-api_master-control-plane-machine-set.yaml' -> '/tmp/install-orig/openshift/99_openshift-machine-api_master-control-plane-machine-set.yaml' +'/tmp/installer/openshift/99_openshift-cluster-api_worker-user-data-secret.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_worker-user-data-secret.yaml' +'/tmp/installer/openshift/99_openshift-machineconfig_99-worker-ssh.yaml' -> '/tmp/install-orig/openshift/99_openshift-machineconfig_99-worker-ssh.yaml' +'/tmp/installer/openshift/99_openshift-cluster-api_worker-machineset-0.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_worker-machineset-0.yaml' +'/tmp/installer/openshift/99_openshift-cluster-api_worker-machineset-1.yaml' -> '/tmp/install-orig/openshift/99_openshift-cluster-api_worker-machineset-1.yaml' +'/tmp/installer/openshift/99_cloud-creds-secret.yaml' -> '/tmp/install-orig/openshift/99_cloud-creds-secret.yaml' +'/tmp/installer/openshift/99_feature-gate.yaml' -> '/tmp/install-orig/openshift/99_feature-gate.yaml' +'/tmp/installer/openshift/99_kubeadmin-password-secret.yaml' -> '/tmp/install-orig/openshift/99_kubeadmin-password-secret.yaml' +'/tmp/installer/openshift/99_role-cloud-creds-secret-reader.yaml' -> '/tmp/install-orig/openshift/99_role-cloud-creds-secret-reader.yaml' +'/tmp/installer/openshift/openshift-install-manifests.yaml' -> '/tmp/install-orig/openshift/openshift-install-manifests.yaml' +'/tmp/installer/cluster-api' -> '/tmp/install-orig/cluster-api' +'/tmp/installer/cluster-api/000_capi-namespace.yaml' -> '/tmp/install-orig/cluster-api/000_capi-namespace.yaml' +'/tmp/installer/cluster-api/01_aws-cluster-controller-identity-default.yaml' -> '/tmp/install-orig/cluster-api/01_aws-cluster-controller-identity-default.yaml' +'/tmp/installer/cluster-api/01_capi-cluster-0.yaml' -> '/tmp/install-orig/cluster-api/01_capi-cluster-0.yaml' +'/tmp/installer/cluster-api/02_infra-cluster.yaml' -> '/tmp/install-orig/cluster-api/02_infra-cluster.yaml' +'/tmp/installer/cluster-api/machines' -> '/tmp/install-orig/cluster-api/machines' +'/tmp/installer/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' -> '/tmp/install-orig/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' +'/tmp/installer/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' -> '/tmp/install-orig/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' +'/tmp/installer/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' -> '/tmp/install-orig/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' +'/tmp/installer/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' -> '/tmp/install-orig/cluster-api/machines/10_inframachine_ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' +'/tmp/installer/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' -> '/tmp/install-orig/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' +'/tmp/installer/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' -> '/tmp/install-orig/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' +'/tmp/installer/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' -> '/tmp/install-orig/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' +'/tmp/installer/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' -> '/tmp/install-orig/cluster-api/machines/10_machine_ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' +'/tmp/installer/.openshift_install.log' -> '/tmp/install-orig/.openshift_install.log' +'/tmp/installer/.openshift_install_state.json' -> '/tmp/install-orig/.openshift_install_state.json' +'/tmp/installer/tls' -> '/tmp/install-orig/tls' +'/tmp/installer/manifests' -> '/tmp/install-orig/manifests' +'/tmp/installer/manifests/cloud-provider-config.yaml' -> '/tmp/install-orig/manifests/cloud-provider-config.yaml' +'/tmp/installer/manifests/cluster-config.yaml' -> '/tmp/install-orig/manifests/cluster-config.yaml' +'/tmp/installer/manifests/cluster-dns-02-config.yml' -> '/tmp/install-orig/manifests/cluster-dns-02-config.yml' +'/tmp/installer/manifests/cluster-infrastructure-02-config.yml' -> '/tmp/install-orig/manifests/cluster-infrastructure-02-config.yml' +'/tmp/installer/manifests/cluster-ingress-02-config.yml' -> '/tmp/install-orig/manifests/cluster-ingress-02-config.yml' +'/tmp/installer/manifests/cluster-network-02-config.yml' -> '/tmp/install-orig/manifests/cluster-network-02-config.yml' +'/tmp/installer/manifests/cluster-proxy-01-config.yaml' -> '/tmp/install-orig/manifests/cluster-proxy-01-config.yaml' +'/tmp/installer/manifests/cluster-scheduler-02-config.yml' -> '/tmp/install-orig/manifests/cluster-scheduler-02-config.yml' +'/tmp/installer/manifests/creds.yml' -> '/tmp/install-orig/manifests/creds.yml' +'/tmp/installer/manifests/kube-cloud-config.yaml' -> '/tmp/install-orig/manifests/kube-cloud-config.yaml' +'/tmp/installer/manifests/kube-system-configmap-root-ca.yaml' -> '/tmp/install-orig/manifests/kube-system-configmap-root-ca.yaml' +'/tmp/installer/manifests/machine-config-server-ca-configmap.yaml' -> '/tmp/install-orig/manifests/machine-config-server-ca-configmap.yaml' +'/tmp/installer/manifests/machine-config-server-ca-secret.yaml' -> '/tmp/install-orig/manifests/machine-config-server-ca-secret.yaml' +'/tmp/installer/manifests/machine-config-server-tls-secret.yaml' -> '/tmp/install-orig/manifests/machine-config-server-tls-secret.yaml' +'/tmp/installer/manifests/openshift-config-secret-pull-secret.yaml' -> '/tmp/install-orig/manifests/openshift-config-secret-pull-secret.yaml' +'/tmp/installer/manifests/cvo-overrides.yaml' -> '/tmp/install-orig/manifests/cvo-overrides.yaml' +'/tmp/installer/manifests/eventexporter_sa.yml' -> '/tmp/install-orig/manifests/eventexporter_sa.yml' +'/tmp/installer/manifests/cluster-monitoring-config.yaml' -> '/tmp/install-orig/manifests/cluster-monitoring-config.yaml' +'/tmp/installer/manifests/sa.yml' -> '/tmp/install-orig/manifests/sa.yml' +'/tmp/installer/manifests/oauth_role.yml' -> '/tmp/install-orig/manifests/oauth_role.yml' +'/tmp/installer/manifests/eventexporter_deployment.yml' -> '/tmp/install-orig/manifests/eventexporter_deployment.yml' +'/tmp/installer/manifests/clusterrole.yml' -> '/tmp/install-orig/manifests/clusterrole.yml' +'/tmp/installer/manifests/metrics_role.yml' -> '/tmp/install-orig/manifests/metrics_role.yml' +'/tmp/installer/manifests/clusterrolebinding.yml' -> '/tmp/install-orig/manifests/clusterrolebinding.yml' +'/tmp/installer/manifests/01_ns.yml' -> '/tmp/install-orig/manifests/01_ns.yml' +'/tmp/installer/manifests/oauth_clusterrolebinding.yml' -> '/tmp/install-orig/manifests/oauth_clusterrolebinding.yml' +'/tmp/installer/manifests/ds.yml' -> '/tmp/install-orig/manifests/ds.yml' +'/tmp/installer/manifests/metrics_rb.yml' -> '/tmp/install-orig/manifests/metrics_rb.yml' +'/tmp/installer/manifests/eventexporter_crb.yml' -> '/tmp/install-orig/manifests/eventexporter_crb.yml' +'/tmp/installer/manifests/promtail_service.yml' -> '/tmp/install-orig/manifests/promtail_service.yml' +'/tmp/installer/manifests/promtail_cookie_secret.yml' -> '/tmp/install-orig/manifests/promtail_cookie_secret.yml' +'/tmp/installer/manifests/eventexporter_config.yml' -> '/tmp/install-orig/manifests/eventexporter_config.yml' +'/tmp/installer/manifests/cm.yml' -> '/tmp/install-orig/manifests/cm.yml' +'/tmp/installer/manifests/metrics.yml' -> '/tmp/install-orig/manifests/metrics.yml' +Install attempt 1 of 1 +waiting for /tmp/installer/auth/kubeconfig to exist +level=warning msg=Found override for release image (registry.build03.ci.openshift.org/ci-op-i1xhw661/release@sha256:3b8516fb6f45f612d9612a3524b20abf3e8922422e35499321ff06b5e6b13866). Please be warned, this is not advised +level=info msg=Consuming OpenShift Install (Manifests) from target directory +level=info msg=Consuming Master Machines from target directory +level=info msg=Consuming Openshift Manifests from target directory +level=info msg=Consuming Common Manifests from target directory +level=info msg=Consuming Worker Machines from target directory +level=info msg=Credentials loaded from the "default" profile in file "/var/run/secrets/ci.openshift.io/cluster-profile/.awscred" +level=info msg=Credentials loaded from the AWS config using "SharedConfigCredentials: /var/run/secrets/ci.openshift.io/cluster-profile/.awscred" provider +kubeconfig received! +waiting for api to be available +level=info msg=Creating infrastructure resources... +level=info msg=Reconciling IAM roles for control-plane and compute nodes +level=info msg=Creating IAM role for master +level=info msg=Creating IAM role for worker +level=info msg=Started local control plane with envtest +level=info msg=Stored kubeconfig for envtest in: /tmp/installer/.clusterapi_output/envtest.kubeconfig +level=info msg=Running process: Cluster API with args [-v=2 --diagnostics-address=0 --health-addr=127.0.0.1:37293 --webhook-port=46663 --webhook-cert-dir=/tmp/envtest-serving-certs-3553329038 --kubeconfig=/tmp/installer/.clusterapi_output/envtest.kubeconfig] +level=info msg=Running process: aws infrastructure provider with args [-v=4 --diagnostics-address=0 --health-addr=127.0.0.1:33089 --webhook-port=33191 --webhook-cert-dir=/tmp/envtest-serving-certs-3763561028 --feature-gates=BootstrapFormatIgnition=true,ExternalResourceGC=true,TagUnmanagedNetworkResources=false,EKS=false --kubeconfig=/tmp/installer/.clusterapi_output/envtest.kubeconfig] +level=info msg=Creating infra manifests... +level=info msg=Created manifest *v1.Namespace, namespace= name=openshift-cluster-api-guests +level=info msg=Created manifest *v1beta2.AWSClusterControllerIdentity, namespace= name=default +level=info msg=Created manifest *v1beta1.Cluster, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs +level=info msg=Created manifest *v1beta2.AWSCluster, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs +level=info msg=Done creating infra manifests +level=info msg=Creating kubeconfig entry for capi cluster ci-op-i1xhw661-ac6cc-7hnhs +level=info msg=Waiting up to 15m0s (until 7:13AM UTC) for network infrastructure to become ready... +level=info msg=Network infrastructure is ready +level=info msg=Creating Route53 records for control plane load balancer +level=info msg=Created private Hosted Zone +level=info msg=Created manifest *v1beta2.AWSMachine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-bootstrap +level=info msg=Created manifest *v1beta2.AWSMachine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master-0 +level=info msg=Created manifest *v1beta2.AWSMachine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master-1 +level=info msg=Created manifest *v1beta2.AWSMachine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master-2 +level=info msg=Created manifest *v1beta1.Machine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-bootstrap +level=info msg=Created manifest *v1beta1.Machine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master-0 +level=info msg=Created manifest *v1beta1.Machine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master-1 +level=info msg=Created manifest *v1beta1.Machine, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master-2 +level=info msg=Created manifest *v1.Secret, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-bootstrap +level=info msg=Created manifest *v1.Secret, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-master +level=info msg=Created manifest *v1.Secret, namespace=openshift-cluster-api-guests name=ci-op-i1xhw661-ac6cc-7hnhs-worker +level=info msg=Waiting up to 15m0s (until 7:21AM UTC) for machines [ci-op-i1xhw661-ac6cc-7hnhs-bootstrap ci-op-i1xhw661-ac6cc-7hnhs-master-0 ci-op-i1xhw661-ac6cc-7hnhs-master-1 ci-op-i1xhw661-ac6cc-7hnhs-master-2] to provision... +level=info msg=Control-plane machines are ready +level=info msg=Cluster API resources have been created. Waiting for cluster to become ready... +level=info msg=Consuming Cluster API Machine Manifests from target directory +level=info msg=Consuming Cluster API Manifests from target directory +level=info msg=Waiting up to 20m0s (until 7:27AM UTC) for the Kubernetes API at https://api.ci-op-i1xhw661-ac6cc.origin-ci-int-aws.dev.rhcloud.com:6443... +level=info msg=API v1.33.3 up +level=info msg=Waiting up to 45m0s (until 7:55AM UTC) for bootstrapping to complete... +api available +waiting for bootstrap to complete +level=info msg=Waiting up to 20m0s (until 7:30AM UTC) for the Kubernetes API at https://api.ci-op-i1xhw661-ac6cc.origin-ci-int-aws.dev.rhcloud.com:6443... +level=info msg=API v1.33.3 up +level=info msg=Waiting up to 45m0s (until 7:55AM UTC) for bootstrapping to complete... +level=info msg=Waiting for the bootstrap etcd member to be removed... +level=info msg=Waiting for the bootstrap etcd member to be removed... +level=info msg=Bootstrap etcd member has been removed +level=info msg=OPENSHIFT_INSTALL_GATHER_BOOTSTRAP is set, will attempt to gather a log bundle +level=info msg=Bootstrap etcd member has been removed +level=info msg=It is now safe to remove the bootstrap resources +level=info msg=Time elapsed: 15m44s +Copying kubeconfig to shared dir as kubeconfig-minimal +level=info msg=Pulling Cluster API artifacts +level=info msg=Pulling VM console logs +level=info msg=Pulling debug logs from the bootstrap machine +level=info msg=Bootstrap gather logs captured here "/tmp/installer/log-bundle-20250828072630.tar.gz" +level=info msg=Destroying the bootstrap resources... +level=info msg=Waiting up to 5m0s for bootstrap machine deletion openshift-cluster-api-guests/ci-op-i1xhw661-ac6cc-7hnhs-bootstrap... +level=info msg=Shutting down local Cluster API controllers... +level=info msg=Stopped controller: Cluster API +level=info msg=Stopped controller: aws infrastructure provider +level=info msg=Shutting down local Cluster API control plane... +level=info msg=Local Cluster API system has completed operations +level=info msg=Finished destroying bootstrap resources +level=info msg=Waiting up to 40m0s (until 8:08AM UTC) for the cluster at https://api.ci-op-i1xhw661-ac6cc.origin-ci-int-aws.dev.rhcloud.com:6443 to initialize... +level=info msg=Waiting up to 30m0s (until 8:10AM UTC) to ensure each cluster operator has finished progressing... +level=info msg=All cluster operators have completed progressing +level=info msg=Checking to see if there is a route at openshift-console/console... +level=info msg=Install complete! +level=info msg=To access the cluster as the system:admin user when using 'oc', run +level=info msg= export KUBECONFIG=/tmp/installer/auth/kubeconfig +level=info msg=Access the OpenShift web-console here: https://console-openshift-console.apps.ci-op-i1xhw661-ac6cc.origin-ci-int-aws.dev.rhcloud.com +level=info msg=Time elapsed: 42m48s +Installer exit with code 0 +Tear down the backgroup process of copying kube config +The process - 173 is not existing any more +Setup phase finished, prepare env for next steps +Copying log bundle... +Removing REDACTED info from log... +Unsupported cluster type 'aws' to collect machine IDs +Copying Cluster API generated manifests... +'/tmp/installer/.clusterapi_output/etcd.log' -> '/logs/artifacts/clusterapi_output-1756366873/etcd.log' +'/tmp/installer/.clusterapi_output/kube-apiserver.log' -> '/logs/artifacts/clusterapi_output-1756366873/kube-apiserver.log' +'/tmp/installer/.clusterapi_output/AWSCluster-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/AWSCluster-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs.yaml' +'/tmp/installer/.clusterapi_output/AWSClusterControllerIdentity--default.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/AWSClusterControllerIdentity--default.yaml' +'/tmp/installer/.clusterapi_output/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' +'/tmp/installer/.clusterapi_output/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' +'/tmp/installer/.clusterapi_output/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' +'/tmp/installer/.clusterapi_output/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/AWSMachine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' +'/tmp/installer/.clusterapi_output/Cluster-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Cluster-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs.yaml' +'/tmp/installer/.clusterapi_output/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' +'/tmp/installer/.clusterapi_output/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-0.yaml' +'/tmp/installer/.clusterapi_output/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-1.yaml' +'/tmp/installer/.clusterapi_output/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Machine-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master-2.yaml' +'/tmp/installer/.clusterapi_output/Namespace--openshift-cluster-api-guests.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Namespace--openshift-cluster-api-guests.yaml' +'/tmp/installer/.clusterapi_output/Secret-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Secret-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-bootstrap.yaml' +'/tmp/installer/.clusterapi_output/Secret-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Secret-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-master.yaml' +'/tmp/installer/.clusterapi_output/Secret-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-worker.yaml' -> '/logs/artifacts/clusterapi_output-1756366873/Secret-openshift-cluster-api-guests-ci-op-i1xhw661-ac6cc-7hnhs-worker.yaml' +Copying required artifacts to shared dir diff --git a/sub_agents/installation_analyst/test_extract_installation_info.py b/sub_agents/installation_analyst/test_extract_installation_info.py new file mode 100644 index 0000000..7b8a26a --- /dev/null +++ b/sub_agents/installation_analyst/test_extract_installation_info.py @@ -0,0 +1,219 @@ +"""Tests for the extract_installation_info function.""" + +import pytest +import os +import sys +from pathlib import Path +from .agent import extract_installation_info + +class TestExtractInstallationInfo: + """Test cases for extract_installation_info function.""" + + @pytest.fixture + def sample_log_content(self): + """Load the sample build-log.txt content for testing.""" + current_dir = Path(__file__).parent + artifacts_dir = current_dir / "test_artifacts" + build_log_path = artifacts_dir / "install-build-log.txt" + print(f"build_log_path: {build_log_path}") + with open(build_log_path, 'r') as f: + return f.read() + + def test_extract_installation_info_with_sample_log(self, sample_log_content): + """Test extraction with the actual sample log file.""" + result = extract_installation_info(sample_log_content) + + # Verify the structure exists + assert isinstance(result, dict) + assert "installer_version" in result + assert "installer_commit" in result + assert "release_image" in result + assert "instance_types" in result + assert "install_duration" in result + assert "architecture" in result + assert "cluster_config" in result + assert "install_success" in result + + # Verify extracted values match the actual log content + # Note: Current regex incorrectly captures "ersion" from header line - this is a known issue + # The actual version line is "openshift-install v4.20.0" but the pattern matches the header first + assert result["installer_version"] == "4.20.0" # TODO: Fix regex to capture correct version + assert result["installer_commit"] == "26d807e98014ca0c26bf4d0f219a3aaed2cd5405" + assert result["release_image"] == "registry.build03.ci.openshift.org/ci-op-i1xhw661/release@sha256:3b8516fb6f45f612d9612a3524b20abf3e8922422e35499321ff06b5e6b13866" + + # Verify instance types + assert result["instance_types"]["compute"] == "m6a.xlarge" + assert result["instance_types"]["control_plane"] == "m6a.xlarge" + + # Verify architecture + assert result["architecture"] == "amd64" + + # Verify cluster configuration + assert result["cluster_config"]["compute_replicas"] == 3 + assert result["cluster_config"]["control_replicas"] == 3 + assert result["cluster_config"]["platform"] == "aws" + assert result["cluster_config"]["region"] == "us-west-2" + + # Verify installation duration and success + # Note: There are multiple "Time elapsed" entries, function returns the first one found + assert result["install_duration"] == "15m44s" # First occurrence in the log + assert result["install_success"] is True + + def test_extract_installation_info_empty_log(self): + """Test extraction with empty log content.""" + result = extract_installation_info("") + + # Should return default structure with None/False values + expected_defaults = { + "installer_version": None, + "installer_commit": None, + "release_image": None, + "instance_types": {}, + "install_duration": None, + "architecture": None, + "cluster_config": {}, + "install_success": False + } + + assert result == expected_defaults + + def test_extract_installation_info_partial_data(self): + """Test extraction with partial log data.""" + partial_log = """ + openshift-install v4.19.0 + built from commit abc123def456 + Install complete! + Time elapsed: 30m15s + """ + + result = extract_installation_info(partial_log) + + assert result["installer_version"] == "4.19.0" + assert result["installer_commit"] == "abc123def456" + assert result["install_duration"] == "30m15s" + assert result["install_success"] is True + assert result["release_image"] is None + assert result["architecture"] is None + + def test_extract_installation_info_failed_install(self): + """Test extraction with failed installation log.""" + failed_log = """ + openshift-install v4.18.0 + level=error msg="Installation failed" + FATAL: Cluster installation failed + """ + + result = extract_installation_info(failed_log) + + assert result["installer_version"] == "4.18.0" + assert result["install_success"] is False + + def test_extract_installation_info_quoted_version(self): + """Test extraction with quoted version strings.""" + quoted_log = ''' + "openshift-install v4.17.0" + "built from commit 26d807e98014ca0c26bf4d0f219a3aaed2cd5405 +" + ''' + + result = extract_installation_info(quoted_log) + + assert result["installer_version"] == "4.17.0" + assert result["installer_commit"] == "26d807e98014ca0c26bf4d0f219a3aaed2cd5405" + + def test_extract_installation_info_complex_config(self): + """Test extraction of complex cluster configuration.""" + complex_log = """ + architecture: arm64 + platform: + gcp: + region: us-central1 + controlPlane: + replicas: 5 + platform: + gcp: + type: n2-standard-8 + compute: + - replicas: 10 + platform: + gcp: + type: n2-standard-4 + networkType: OVNKubernetes + """ + + result = extract_installation_info(complex_log) + + assert result["architecture"] == "arm64" + assert result["cluster_config"]["platform"] == "gcp" + assert result["cluster_config"]["region"] == "us-central1" + assert result["cluster_config"]["control_replicas"] == 5 + assert result["cluster_config"]["compute_replicas"] == 10 + assert result["cluster_config"]["network_type"] == "OVNKubernetes" + assert result["instance_types"]["control_plane"] == "n2-standard-8" + assert result["instance_types"]["compute"] == "n2-standard-4" + + def test_extract_installation_info_multiple_release_patterns(self): + """Test extraction with different release image patterns.""" + release_log1 = 'Installing from release registry.example.com/release:4.20' + result1 = extract_installation_info(release_log1) + assert result1["release_image"] == "registry.example.com/release:4.20" + + release_log2 = 'release image "registry.example.com/custom:latest"' + result2 = extract_installation_info(release_log2) + assert result2["release_image"] == "registry.example.com/custom:latest" + + release_log3 = 'RELEASE_IMAGE_LATEST for release image "registry.ci.openshift.org/release:v4.19"' + result3 = extract_installation_info(release_log3) + assert result3["release_image"] == "registry.ci.openshift.org/release:v4.19" + + def test_extract_installation_info_duration_formats(self): + """Test extraction with different duration formats.""" + duration_log1 = 'Time elapsed: 1h30m45s' + result1 = extract_installation_info(duration_log1) + assert result1["install_duration"] == "1h30m45s" + + duration_log2 = '''Install complete! + Some other text + Time elapsed: 25m10s''' + result2 = extract_installation_info(duration_log2) + assert result2["install_duration"] == "25m10s" + + def test_extract_installation_info_network_type_variations(self): + """Test extraction of different network types.""" + network_logs = [ + ("networkType: OpenShiftSDN", "OpenShiftSDN"), + ("networkType: OVNKubernetes", "OVNKubernetes"), + ("networkType: Calico", "Calico") + ] + + for log_content, expected_network_type in network_logs: + result = extract_installation_info(log_content) + assert result["cluster_config"]["network_type"] == expected_network_type + + def test_extract_installation_info_instance_types_only_control_plane(self): + """Test extraction when only control plane instance type is specified.""" + log_content = """ + controlPlane: + platform: + aws: + type: m5.2xlarge + """ + + result = extract_installation_info(log_content) + + assert result["instance_types"]["control_plane"] == "m5.2xlarge" + assert "compute" not in result["instance_types"] + + def test_extract_installation_info_instance_types_only_compute(self): + """Test extraction when only compute instance type is specified.""" + log_content = """ + compute: + - platform: + aws: + type: m5.large + """ + + result = extract_installation_info(log_content) + + assert result["instance_types"]["compute"] == "m5.large" + assert "control_plane" not in result["instance_types"] diff --git a/sub_agents/installation_analyst/test_get_job_metadata.py b/sub_agents/installation_analyst/test_get_job_metadata.py new file mode 100644 index 0000000..341040f --- /dev/null +++ b/sub_agents/installation_analyst/test_get_job_metadata.py @@ -0,0 +1,85 @@ +"""Tests for the get_job_metadata function.""" + +import pytest +import os +import sys +from pathlib import Path +from .agent import get_job_metadata + +class TestExtractInstallationInfo: + """Test cases for get_job_metadata function.""" + + @pytest.fixture + def sample_log_content(self): + """Load the sample build-log.txt content for testing.""" + current_dir = Path(__file__).parent + artifacts_dir = current_dir / "test_artifacts" + build_log_path = artifacts_dir / "build-log.txt" + print(f"build_log_path: {build_log_path}") + with open(build_log_path, 'r') as f: + return f.read() + + @pytest.fixture + def sample_failing_log_content(self): + """Load the sample failing-build-log.txt content for testing.""" + current_dir = Path(__file__).parent + artifacts_dir = current_dir / "test_artifacts" + build_log_path = artifacts_dir / "failing-build-log.txt" + print(f"build_log_path: {build_log_path}") + with open(build_log_path, 'r') as f: + return f.read() + + @pytest.fixture + def sample_failing_log_content2(self): + """Load the sample failing-build-log.txt content for testing.""" + current_dir = Path(__file__).parent + artifacts_dir = current_dir / "test_artifacts" + build_log_path = artifacts_dir / "failing-build-log-2.txt" + print(f"build_log_path: {build_log_path}") + with open(build_log_path, 'r') as f: + return f.read() + + def test_extract_installation_info_from_passing_log(self, sample_log_content): + """Test extraction with the actual sample log file.""" + result = get_job_metadata(sample_log_content) + + # Verify the structure exists + assert isinstance(result, dict) + assert "test_name" in result + assert "status" in result + assert "failure_reason" not in result + + # Verify extracted values match the actual log content + assert result["test_name"] == "ocp-e2e-aws-ovn-multi-a-a" + assert result["status"] == "succeeded" + + def test_extract_installation_info_from_failing_log1(self, sample_failing_log_content): + """Test extraction with an actual failing sample log file.""" + result = get_job_metadata(sample_failing_log_content) + + # Verify the structure exists + assert isinstance(result, dict) + assert "test_name" in result + assert "status" in result + assert "failure_reason" in result + + # Verify extracted values match the actual log content + assert result["test_name"] == None + assert result["status"] == "failed" + assert result["failure_reason"] == "resolving_inputs:resolving_release" + + + def test_extract_installation_info_from_failing_log2(self, sample_failing_log_content2): + """Test extraction with an actual failing sample log file.""" + result = get_job_metadata(sample_failing_log_content2) + + # Verify the structure exists + assert isinstance(result, dict) + assert "test_name" in result + assert "status" in result + assert "failure_reason" in result + + # Verify extracted values match the actual log content + assert result["test_name"] == "ocp-e2e-gcp-ovn-multi-x-ax" + assert result["status"] == "failed" + assert result["failure_reason"] == "executing_graph:step_failed:utilizing_lease:executing_test:executing_multi_stage_test" \ No newline at end of file