You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/en/docs/documentation/dependent-resource-and-workflows/dependent-resources.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -177,7 +177,7 @@ usually limited to status handling based on the state of the secondary resources
177
177
resources are not dependent on each other. As an alternative, you can also invoke reconciliation explicitly,
178
178
event for managed workflows.
179
179
180
-
See [Workflows](https://javaoperatorsdk.io/docs/workflows) for more details on how the dependent
180
+
See [Workflows](https://javaoperatorsdk.io/docs/documentation/dependent-resource-and-workflows/workflows/) for more details on how the dependent
181
181
resources are reconciled.
182
182
183
183
This behavior and automated handling is referred to as "managed" because the `DependentResource`
@@ -220,7 +220,7 @@ It is also possible to wire dependent resources programmatically. In practice th
220
220
developer is responsible for initializing and managing the dependent resources as well as calling
221
221
their `reconcile` method. However, this makes it possible for developers to fully customize the
222
222
reconciliation process. Standalone dependent resources should be used in cases when the managed use
223
-
case does not fit. You can, of course, also use [Workflows](https://javaoperatorsdk.io/docs/workflows) when managing
223
+
case does not fit. You can, of course, also use [Workflows](https://javaoperatorsdk.io/docs/documentation/dependent-resource-and-workflows/workflows/) when managing
While dependent resources focus on how a given secondary resource should be reconciled,
17
17
workflows focus on orchestrating how these dependent resources should be reconciled.
18
18
19
19
Workflows describe how as a set of
20
-
[dependent resources](https://javaoperatorsdk.io/docs/dependent-resources) (DR) depend on one
20
+
[dependent resources](https://javaoperatorsdk.io/docs/documentation/dependent-resource-and-workflows/dependent-resources/) (DR) depend on one
21
21
another, along with the conditions that need to hold true at certain stages of the
22
22
reconciliation process.
23
23
@@ -135,7 +135,7 @@ public class SampleWorkflowReconciler implements Reconciler<WorkflowAllFeatureCu
135
135
### Standalone
136
136
137
137
In this mode workflow is built manually
138
-
using [standalone dependent resources](https://javaoperatorsdk.io/docs/dependent-resources#standalone-dependent-resources)
138
+
using [standalone dependent resources](https://javaoperatorsdk.io/docs/documentation/dependent-resource-and-workflows/dependent-resources/#standalone-dependent-resources)
139
139
. The workflow is created using a builder, that is explicitly called in the reconciler (from web
140
140
page sample):
141
141
@@ -194,7 +194,7 @@ public class WebPageDependentsWorkflowReconciler
194
194
This section describes how a workflow is executed in details, how the ordering is determined and
195
195
how conditions and errors affect the behavior. The workflow execution is divided in two parts
196
196
similarly to how `Reconciler` and `Cleaner` behavior are separated.
197
-
[Cleanup](https://javaoperatorsdk.io/docs/features#the-reconcile-and-cleanup) is
197
+
[Cleanup](https://javaoperatorsdk.io/docs/documentation/reconciler/#implementing-a-reconciler-and-cleaner-interfaces) is
Copy file name to clipboardExpand all lines: docs/content/en/docs/migration/v4-5-migration.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,7 +5,7 @@ permalink: /docs/v4-5-migration
5
5
---
6
6
7
7
Version 4.5 introduces improvements related to event handling for Dependent Resources, more precisely the
8
-
[caching and event handling](https://javaoperatorsdk.io/docs/dependent-resources#caching-and-event-handling-in-kubernetesdependentresource)
8
+
[caching and event handling](https://javaoperatorsdk.io/docs/documentation/dependent-resource-and-workflows/dependent-resources/#caching-and-event-handling-in-kubernetesdependentresource)
9
9
features. As a result the Kubernetes resources managed using
0 commit comments