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: adr/002-Custom-Resource-Deserialization-Problem.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
@@ -8,7 +8,7 @@ accepted
8
8
9
9
In case there are multiple versions of a custom resource it can happen that a controller/informer tracking
10
10
such a resource might run into deserialization problem as shown
11
-
in [this integration test](https://github.com/java-operator-sdk/java-operator-sdk/blob/07aab1a9914d865364d7236e496ef9ba5b50699e/operator-framework/src/test/java/io/javaoperatorsdk/operator/MultiVersionCRDIT.java#L55-L55)
11
+
in [this integration test](https://github.com/operator-framework/java-operator-sdk/blob/07aab1a9914d865364d7236e496ef9ba5b50699e/operator-framework/src/test/java/io/javaoperatorsdk/operator/MultiVersionCRDIT.java#L55-L55)
12
12
.
13
13
Such case is possible (as seen in the test) if there are no conversion hooks in place, so the two custom resources
14
14
which have different version are stored in the original form (not converted) and are not compatible.
Copy file name to clipboardExpand all lines: docs/index.html
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -122,25 +122,25 @@ <h3 class="uk-card-title uk-margin-remove-bottom">We are a friendly team of Java
122
122
</div>
123
123
<divclass="uk-card-body">
124
124
<p>
125
-
Get in touch either on <ahref="https://github.com/java-operator-sdk/java-operator-sdk">GitHub</a> or our <ahref="https://discord.gg/DacEhAy" alt="discord server">Discord server</a>, we are always
125
+
Get in touch either on <ahref="https://github.com/operator-framework/java-operator-sdk">GitHub</a> or our <ahref="https://discord.gg/DacEhAy" alt="discord server">Discord server</a>, we are always
126
126
happy to chat and help
127
127
you find the right issue to get started.</br>
128
128
Feel free to stop by for questions, comments or just saying <i>"Hi"</i>.
129
129
</p>
130
130
</p>
131
131
<p> We have a <ahref="{{baseurl}}/coc">code of conduct</a>
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/dependent/GarbageCollected.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@
19
19
* primary resource will be automatically added to this managed resource.
20
20
* </p>
21
21
* <p>
22
-
* See <a href="https://github.com/java-operator-sdk/java-operator-sdk/issues/1127">this issue</a>
22
+
* See <a href="https://github.com/operator-framework/java-operator-sdk/issues/1127">this issue</a>
Copy file name to clipboardExpand all lines: operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/CRUDNoGCKubernetesDependentResource.java
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -12,7 +12,7 @@
12
12
* garbage collected by Kubernetes when the associated primary resource is destroyed, instead
13
13
* explicitly deleted. This is useful when resource needs to be deleted before another one in a
14
14
* workflow, in other words an ordering matters during a cleanup. See also:
0 commit comments