-
Notifications
You must be signed in to change notification settings - Fork 219
Extend documentation on DependentResources/Workflows #1476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Comments
Also current docs have some obvious typos like @ControllerConfiguration(dependents = {
@Dependent(name = DEPLOYMENT_NAME, type = DeploymentDependentResource.class,
readyPostcondition = DeploymentReadyCondition.class),
@Dependent(type = ConfigMapDependentResource.class,
reconcilePrecondition = ConfigMapReconcileCondition.class,
deletePostcondition = ConfigMapDeletePostCondition.class,
dependsOn = DEPLOYMENT_NAME)
})
public class SampleWorkflowReconciler implements Reconciler<TestCustomResource>,
Cleaner<WorkflowAllFeatureCustomResource> {
// ...
} |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
This issue is stale because it has been open 60 days with no activity. Remove stale label or comment or this will be closed in 14 days. |
This issue was closed because it has been stalled for 14 days with no activity. |
The documentation regarding
DependentResource
s andWorkflow
s is pretty minimal and focuses on very very few examples close to "hello world".It would be nice to see more extensive examples covering more "real-world-like" use cases.
Especially speaking about
Workflow
a lot of combinations/variations of the possible configurations are left to the user's imagination and reading the source code.The text was updated successfully, but these errors were encountered: