From 86214c4eb1da816c472850526b91bcaa1a862ec6 Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Wed, 21 Jan 2026 10:10:33 -0800 Subject: [PATCH 1/2] alphabetize text extenstion binaries by imageTag this is a no-op commit just to help visually search for test extension binaries Signed-off-by: Jamo Luhrsen --- pkg/test/extensions/binary.go | 92 +++++++++++++++++------------------ 1 file changed, 46 insertions(+), 46 deletions(-) diff --git a/pkg/test/extensions/binary.go b/pkg/test/extensions/binary.go index 0e59358b326a..02487313697c 100644 --- a/pkg/test/extensions/binary.go +++ b/pkg/test/extensions/binary.go @@ -172,100 +172,100 @@ var extensionBinaries = []TestBinary{ // Extensions in other payload images { - imageTag: "hyperkube", - binaryPath: "/usr/bin/k8s-tests-ext.gz", + imageTag: "cli", + binaryPath: "/usr/bin/oc-tests-ext.gz", }, { - imageTag: "machine-api-operator", - binaryPath: "/machine-api-tests-ext.gz", + imageTag: "cluster-config-operator", + binaryPath: "/usr/bin/cluster-config-operator-tests-ext.gz", }, { imageTag: "cluster-control-plane-machine-set-operator", binaryPath: "/cluster-control-plane-machine-set-operator-ext.gz", }, { - imageTag: "olm-operator-controller", - binaryPath: "/usr/bin/olmv1-tests-ext.gz", + imageTag: "cluster-etcd-operator", + binaryPath: "/usr/bin/cluster-etcd-operator-tests-ext.gz", }, { - imageTag: "machine-config-operator", - binaryPath: "/usr/bin/machine-config-tests-ext.gz", + imageTag: "cluster-image-registry-operator", + binaryPath: "/usr/bin/cluster-image-registry-operator-tests-ext.gz", }, { - imageTag: "cluster-monitoring-operator", - binaryPath: "/usr/bin/cluster-monitoring-operator-tests-ext.gz", + imageTag: "cluster-kube-apiserver-operator", + binaryPath: "/usr/bin/cluster-kube-apiserver-operator-tests-ext.gz", }, { - imageTag: "cluster-storage-operator", - binaryPath: "/usr/bin/cluster-storage-operator-tests-ext.gz", + imageTag: "cluster-kube-controller-manager-operator", + binaryPath: "/usr/bin/cluster-kube-controller-manager-operator-tests-ext.gz", }, { - imageTag: "cluster-kube-apiserver-operator", - binaryPath: "/usr/bin/cluster-kube-apiserver-operator-tests-ext.gz", + imageTag: "cluster-kube-scheduler-operator", + binaryPath: "/usr/bin/cluster-kube-scheduler-operator-tests-ext.gz", }, { - imageTag: "cluster-openshift-apiserver-operator", - binaryPath: "/usr/bin/cluster-openshift-apiserver-operator-tests-ext.gz", + imageTag: "cluster-kube-storage-version-migrator-operator", + binaryPath: "/usr/bin/cluster-kube-storage-version-migrator-operator-tests-ext.gz", }, { - imageTag: "openshift-apiserver", - binaryPath: "/usr/bin/openshift-apiserver-tests-ext.gz", + imageTag: "cluster-monitoring-operator", + binaryPath: "/usr/bin/cluster-monitoring-operator-tests-ext.gz", }, { - imageTag: "oauth-apiserver", - binaryPath: "/usr/bin/oauth-apiserver-tests-ext.gz", + imageTag: "cluster-node-tuning-operator", + binaryPath: "/usr/bin/cluster-node-tuning-operator-test-ext.gz", }, { - imageTag: "service-ca-operator", - binaryPath: "/usr/bin/service-ca-operator-tests-ext.gz", + imageTag: "cluster-openshift-apiserver-operator", + binaryPath: "/usr/bin/cluster-openshift-apiserver-operator-tests-ext.gz", }, { - imageTag: "cluster-kube-controller-manager-operator", - binaryPath: "/usr/bin/cluster-kube-controller-manager-operator-tests-ext.gz", + imageTag: "cluster-openshift-controller-manager-operator", + binaryPath: "/usr/bin/cluster-openshift-controller-manager-operator-tests-ext.gz", }, { - imageTag: "cluster-kube-storage-version-migrator-operator", - binaryPath: "/usr/bin/cluster-kube-storage-version-migrator-operator-tests-ext.gz", + imageTag: "cluster-storage-operator", + binaryPath: "/usr/bin/cluster-storage-operator-tests-ext.gz", }, { - imageTag: "operator-lifecycle-manager", - binaryPath: "/usr/bin/olmv0-tests-ext.gz", + imageTag: "cluster-version-operator", + binaryPath: "/usr/bin/cluster-version-operator-tests.gz", }, { - imageTag: "cluster-openshift-controller-manager-operator", - binaryPath: "/usr/bin/cluster-openshift-controller-manager-operator-tests-ext.gz", + imageTag: "hyperkube", + binaryPath: "/usr/bin/k8s-tests-ext.gz", }, { - imageTag: "openshift-controller-manager", - binaryPath: "/usr/bin/openshift-controller-manager-tests-ext.gz", + imageTag: "machine-api-operator", + binaryPath: "/machine-api-tests-ext.gz", }, { - imageTag: "cluster-config-operator", - binaryPath: "/usr/bin/cluster-config-operator-tests-ext.gz", + imageTag: "machine-config-operator", + binaryPath: "/usr/bin/machine-config-tests-ext.gz", }, { - imageTag: "cluster-etcd-operator", - binaryPath: "/usr/bin/cluster-etcd-operator-tests-ext.gz", + imageTag: "oauth-apiserver", + binaryPath: "/usr/bin/oauth-apiserver-tests-ext.gz", }, { - imageTag: "cluster-kube-scheduler-operator", - binaryPath: "/usr/bin/cluster-kube-scheduler-operator-tests-ext.gz", + imageTag: "olm-operator-controller", + binaryPath: "/usr/bin/olmv1-tests-ext.gz", }, { - imageTag: "cluster-image-registry-operator", - binaryPath: "/usr/bin/cluster-image-registry-operator-tests-ext.gz", + imageTag: "openshift-apiserver", + binaryPath: "/usr/bin/openshift-apiserver-tests-ext.gz", }, { - imageTag: "cluster-version-operator", - binaryPath: "/usr/bin/cluster-version-operator-tests.gz", + imageTag: "openshift-controller-manager", + binaryPath: "/usr/bin/openshift-controller-manager-tests-ext.gz", }, { - imageTag: "cluster-node-tuning-operator", - binaryPath: "/usr/bin/cluster-node-tuning-operator-test-ext.gz", + imageTag: "operator-lifecycle-manager", + binaryPath: "/usr/bin/olmv0-tests-ext.gz", }, { - imageTag: "cli", - binaryPath: "/usr/bin/oc-tests-ext.gz", + imageTag: "service-ca-operator", + binaryPath: "/usr/bin/service-ca-operator-tests-ext.gz", }, } From fb9c943aec009ea21d7176abb42e47da4365507f Mon Sep 17 00:00:00 2001 From: Jamo Luhrsen Date: Wed, 21 Jan 2026 10:11:37 -0800 Subject: [PATCH 2/2] add ovn-kubernetes test extension binary Signed-off-by: Jamo Luhrsen --- pkg/test/extensions/binary.go | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkg/test/extensions/binary.go b/pkg/test/extensions/binary.go index 02487313697c..b13f69e86901 100644 --- a/pkg/test/extensions/binary.go +++ b/pkg/test/extensions/binary.go @@ -263,6 +263,10 @@ var extensionBinaries = []TestBinary{ imageTag: "operator-lifecycle-manager", binaryPath: "/usr/bin/olmv0-tests-ext.gz", }, + { + imageTag: "ovn-kubernetes", + binaryPath: "/usr/bin/ovn-kubernetes-tests-ext.gz", + }, { imageTag: "service-ca-operator", binaryPath: "/usr/bin/service-ca-operator-tests-ext.gz",