NE-2491: Delete the CRL controller - #1536
Conversation
The CRL controller was originally added to download Certificate Revocation Lists, but that functionality was moved to the router in OpenShift 4.14. The controller was then updated to only delete any existing configmap it had created. It has been unnecessary since OpenShift 4.15 and should be removed. This commit resolves NE-2491. https://issues.redhat.com/browse/NE-2491 Follow-up to commit b648921. openshift@b648921 * pkg/operator/controller/crl/controller.go: * pkg/operator/controller/crl/crl_configmap.go: Delete the CRL controller directory. * pkg/operator/controller/names.go (CRLConfigMapName): Delete the function. * pkg/operator/operator.go: Remove the CRL controller import and registration. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
|
Pipeline controller notification For optional jobs, comment This repository is configured in: LGTM mode |
|
@Miciah: This pull request references NE-2491 which is a valid jira issue. DetailsIn response to this:
Instructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the openshift-eng/jira-lifecycle-plugin repository. |
|
[APPROVALNOTIFIER] This PR is NOT APPROVED This pull-request has been approved by: The full list of commands accepted by this bot can be found here. DetailsNeeds approval from an approver in each of these files:Approvers can indicate their approval by writing |
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Repository YAML (base), Central YAML (inherited) Review profile: CHILL Plan: Enterprise Run ID: 📒 Files selected for processing (4)
💤 Files with no reviewable changes (4)
📝 WalkthroughWalkthroughThe CRL controller and its reconciliation implementation were deleted. The operator no longer imports or initializes the CRL controller. The public 🚥 Pre-merge checks | ✅ 15✅ Passed checks (15 passed)
✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
|
@Miciah: all tests passed! Full PR test history. Your PR dashboard. DetailsInstructions for interacting with me using PR comments are available here. If you have questions or suggestions related to my behavior, please file an issue against the kubernetes-sigs/prow repository. I understand the commands that are listed here. |
The CRL controller was originally added to download Certificate Revocation Lists, but that functionality was moved to the router in OpenShift 4.14. The controller was then updated to only delete any existing configmap it had created. It has been unnecessary since OpenShift 4.15 and should be removed.
Follow-up to #939.