PR #280 introduced a way to pass certain configuration parameters to ControlPlaneImpl object. This approach is difficult to generalize, test and maintain.
Instead, it should follow Rust idiomatic approaches with either Builder pattern or new_with_opts (or something like this) constructor.
All configuration parameters should be defined declaratively and readable from either cli args or env (or in some future from configuration file). All components should be parametrizable via constructors only.