Remove FSM integration to blockchain controller#40
Merged
Conversation
👋 Thanks, @galt-tr!This pull request comes from a fork. For security, our CI runs in a restricted mode.
Thanks for contributing to bsv-blockchain/teranode-operator! 🚀 |
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



This pull request removes all Finite State Machine (FSM) monitoring and reconciliation features from the operator. This includes the removal of the FSM configuration from the
BlockchainSpec, all related controller logic, and the supporting code and dependencies. The changes simplify the codebase and reduce external dependencies.Removal of FSM features:
FiniteStateMachineSettingsstruct and thefiniteStateMachinefield from theBlockchainSpecinblockchain_types.go, eliminating FSM configuration from the CRD.blockchain_fsm.gofile, which contained all FSM-related logic, including state reconciliation and error handling.BlockchainReconcilerinblockchain_controller.go, including theGetFSMState,ReconcileState, and error handling code.Dependency cleanup:
teranodedependency and all related indirect dependencies fromgo.mod, including those for FSM operation and gRPC communication. [1] [2] [3] [4]Controller code simplification:
BlockchainClientfield from theBlockchainReconcilerstruct inblockchain_controller.go. [1] [2]