This repository was archived by the owner on Jun 11, 2025. It is now read-only.
Feat/webhooks#50
Merged
Merged
Conversation
mongodb nodes - mongo client failed connecting and authenticating with mongodb URI for replicaset enabled mongodb cluster. It was failing with ReplicaSetNoPrimaryKey error. We fixed it by setting readpreference to nil, instead of empty readpreference struct
- better schema for managedresource and managedservice - refactored controllers to adjust to the schma changes
- finally made the helm CRD worh with map[string]any, ideally kubebuilder and operator-sdk will not allow that go, but with map[string]apiextensionsv1.JSON, we can achieve the same thing - it removes the previous need to pass helm values in a multiline string format, as i was not able to find a way to make k8s CRD work with map[string]any
kafka when it fails to connect - earlier bahaviour was to exit the controller when it failed to connect, but in case of single binary platform operator, it is not the desirable behaviour anymore
- maps releated functions extracted to a separate go file - logger updated to have caller trace when printing error - step result has now a new method `NoRequeue` to better indicate no queueing instead of Err(nil)
nodepool operator
- add printcolumn snippet to have `last reconciled at`, `isReady` and `creationTime` for k8s resources
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
MongoDB Client Fix
ReplicaSetNoPrimaryKeyerror, which is now resolved by settingreadpreferencetonil.Cluster and Nodepool Operator Refactorings
Operator Utilities Updates
NoRequeue, in the step result to indicate no requeueing.Resource Watcher Controller Improvement
Helm Charts Enhancement
Managed Service and Resource Schema Refinements
Neovim Snippets
last reconciled at,isReady, andcreationTimefor Kubernetes resources, making it easier to inspect and understand resource status.