Closed
Description
It can be confusing (it is for some), that in dependent resource has a name when defining for example multiple DR that depends on each other. But also most of KubernetesResources has a name
. So this can be misinterpreted, in a way that we are setting the name of the dependent resource this way. So would rather rename it to id
.
from:
@ControllerConfiguration(
dependents = {@Dependent(name="MyDependentName", type = ConfigMapDependent.class)})
to:
@ControllerConfiguration(
dependents = {@Dependent(id="MyDependentName", type = ConfigMapDependent.class)})