From 571fb2c5a90ce6c956ad3ab18400c1b61fdc4ac4 Mon Sep 17 00:00:00 2001 From: James Slagle Date: Thu, 22 Jan 2026 14:11:25 -0500 Subject: [PATCH] Add combined-ca-bundle secret for dataplane-deploy-no-nodes-test The dataplane-deploy-no-nodes-test kuttl test require that a combined-ca-bundle Secret exists so that it can be mounted by the ansibleee job pods. When running all the kuttl tests together, the ctlplane tests would create the secret. However, when running just this test in isolation it needs to be created. The other dataplane tests that need this Secret to exist already handle creating it on their own. Signed-off-by: James Slagle --- .../00-dataplane-create.yaml | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/test/kuttl/tests/dataplane-deploy-no-nodes-test/00-dataplane-create.yaml b/test/kuttl/tests/dataplane-deploy-no-nodes-test/00-dataplane-create.yaml index 23e5d5cf1..2bba09fbe 100644 --- a/test/kuttl/tests/dataplane-deploy-no-nodes-test/00-dataplane-create.yaml +++ b/test/kuttl/tests/dataplane-deploy-no-nodes-test/00-dataplane-create.yaml @@ -1,4 +1,15 @@ apiVersion: v1 +data: + internal-ca-bundle.pem: "" + tls-ca-bundle.pem: "" +kind: Secret +metadata: + labels: + combined-ca-bundle: "" + name: combined-ca-bundle +type: Opaque +--- +apiVersion: v1 kind: Secret metadata: name: nova-cell1-compute-config