Skip to content

Commit 3997882

Browse files
MikeSpreitzerclubandersonCopilot
authored
🐛 Stop the E2E on OpenShift workflow from deleting the CRDs (#293)
* Stop the E2E on OpenShift workflow from deleting the CRDs This is a temporary stop-gap until we develop a more comprehensive solution. Signed-off-by: Mike Spreitzer <mspreitz@us.ibm.com> * Apply suggestion from @Copilot Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> --------- Signed-off-by: Mike Spreitzer <mspreitz@us.ibm.com> Co-authored-by: Andy Anderson <andy@clubanderson.com> Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent b31acfd commit 3997882

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/ci-e2e-openshift.yaml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,9 @@ jobs:
886886
--ignore-not-found --timeout=120s || true
887887
888888
# Delete CRDs
889-
kubectl delete -f config/crd/ --ignore-not-found || true
889+
# TODO: Implement safe CRD lifecycle management for tests (e.g., handle shared clusters,
890+
# concurrent test runs, and version upgrades/downgrades) before enabling CRD deletion.
891+
# kubectl delete -f config/crd/ --ignore-not-found || true
890892
891893
# Delete cluster-scoped resources
892894
kubectl delete clusterrole fma-node-viewer --ignore-not-found || true

0 commit comments

Comments
 (0)