From d3e0763338d08e68fb7f960f867a9669775dd9fb Mon Sep 17 00:00:00 2001 From: Lucas Andrade Flores Date: Tue, 21 Jul 2026 14:53:33 +0200 Subject: [PATCH 1/2] feat(cao): implement tls-scanner --- .../openshift-cluster-autoscaler-operator-main.yaml | 11 +++++++++++ .../cluster-profiles/cluster-profiles-config.yaml | 6 +++--- 2 files changed, 14 insertions(+), 3 deletions(-) diff --git a/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml b/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml index 1067df97a6b75..db94e0765bee4 100644 --- a/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml +++ b/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml @@ -3,6 +3,10 @@ base_images: name: tests-private namespace: ci tag: "4.22" + tls-scanner-tool: + name: tls-scanner + namespace: tls-scanner + tag: tls-scanner-tool binary_build_commands: make build build_root: from_repository: true @@ -54,6 +58,13 @@ tests: skip_if_only_changed: ^docs/|^\.tekton/|^rpms\.(.*)\.yaml$|^renovate.json$|\.md$|^(?:.*/)?(?:\.gitignore|OWNERS|PROJECT|LICENSE)$ steps: cluster_profile: openshift-org-aws + env: + PQC_CHECK: "true" + SCAN_NAMESPACE: openshift-machine-api + SCANNER_CPU: 500m + SCANNER_MEMORY: 1Gi + test: + - ref: tls-scanner-run workflow: openshift-e2e-aws - as: e2e-aws-operator skip_if_only_changed: ^docs/|^\.tekton/|^rpms\.(.*)\.yaml$|^renovate.json$|\.md$|^(?:.*/)?(?:\.gitignore|OWNERS|PROJECT|LICENSE)$|_test\.go$ diff --git a/ci-operator/step-registry/cluster-profiles/cluster-profiles-config.yaml b/ci-operator/step-registry/cluster-profiles/cluster-profiles-config.yaml index 40f36ec6de957..85d43590c3ad8 100644 --- a/ci-operator/step-registry/cluster-profiles/cluster-profiles-config.yaml +++ b/ci-operator/step-registry/cluster-profiles/cluster-profiles-config.yaml @@ -1869,9 +1869,6 @@ cluster_profiles: secret: cluster-secrets-vsphere konflux: cluster_groups: - rh-stg: - - stone-stg-rh01 - - stone-stage-p01 rh-prod: - kflux-ocp-p01 - kflux-osp-p01 @@ -1881,3 +1878,6 @@ konflux: - stone-prd-rh01 - stone-prod-p01 - stone-prod-p02 + rh-stg: + - stone-stg-rh01 + - stone-stage-p01 From d72d1fd57a35b4323cd2e4ad2d895b3c3f74ebc8 Mon Sep 17 00:00:00 2001 From: Lucas Andrade Flores Date: Wed, 22 Jul 2026 10:58:08 +0200 Subject: [PATCH 2/2] chore(cao): add test command --- .../openshift-cluster-autoscaler-operator-main.yaml | 1 + 1 file changed, 1 insertion(+) diff --git a/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml b/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml index db94e0765bee4..21a278b5e627e 100644 --- a/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml +++ b/ci-operator/config/openshift/cluster-autoscaler-operator/openshift-cluster-autoscaler-operator-main.yaml @@ -64,6 +64,7 @@ tests: SCANNER_CPU: 500m SCANNER_MEMORY: 1Gi test: + - ref: openshift-e2e-test - ref: tls-scanner-run workflow: openshift-e2e-aws - as: e2e-aws-operator