fdb-kubernetes-operator
fdb-kubernetes-operator copied to clipboard
A kubernetes operator for FoundationDB
### What would you like to be added/changed? The taint related test uses sleep to verify that the feature can replace pods on a timely manner. Using sleep() in unit...
### What would you like to be added/changed? Improve documentation for ProcessGroups on the different fields and how they are used.
### What would you like to be added/changed? We should add the watch (https://book.kubebuilder.io/reference/watching-resources/externally-managed.html) functionality for the operator to get updates (and maintain a cache) on nodes. This allows the...
The current implementation of [CanSafelyRemove](https://github.com/FoundationDB/fdb-kubernetes-operator/blob/master/fdbclient/admin_client.go#L296-L326) has the side effect, that we are actually issuing an `exclude` command. With the `7.0.0` we are able to read the special key range `(\xff\xff/management/in_progress_exclusion/,...
### What would you like to be added/changed? In the fdbkubernetesmonitor we added support for pprof endpoints and we should add those endpoints to the operator too, to allow analyzing...
### What would you like to be added/changed? We should create a benchmark suite for the operator where we create one or more large FoundationDB cluster. The idea is to...
### What would you like to be added/changed? This would allow to ensure we are resilient against different errors. We could start with allowing to inject a timeout error based...
### What would you like to be added/changed? We should extend the functionality to set all processes to crash loop.
### What would you like to be added/changed? Docs: https://apple.github.io/foundationdb/perpetual-storage-wiggle.html this feature is helpful for migrating to a different storage engine without migrating all storage processes at once. A user...
### What would you like to be added/changed? In the bounce controller we currently have this code: ```go // Ignore processes that are missing for more than 30 seconds e.mg....