diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index de2fa8b733..facbbd7df9 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -14,7 +14,7 @@ unacceptable behaviour to any of the project admins or adam.sandor@container-sol ## Bugs -If you find a bug, please [open an issue](https://github.com/java-operator-sdk/java-operator-sdk/issues)! Do try +If you find a bug, please [open an issue](https://github.com/operator-framework/java-operator-sdk/issues)! Do try to include all the details needed to recreate your problem. This is likely to include: - The version of the Operator SDK being used @@ -24,7 +24,7 @@ to include all the details needed to recreate your problem. This is likely to in ## Building Features and Documentation If you're looking for something to work on, take look at the issue tracker, in particular any items -labelled [good first issue](https://github.com/java-operator-sdk/java-operator-sdk/labels/good%20first%20issue). +labelled [good first issue](https://github.com/operator-framework/java-operator-sdk/labels/good%20first%20issue). Please leave a comment on the issue to mention that you have started work, in order to avoid multiple people working on the same issue. diff --git a/README.md b/README.md index 0c8e029bdc..fa957ef739 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ #  - + [](https://kubernetes.slack.com/archives/CAW0GV7A5 "get invite here: https://communityinviter.com/apps/kubernetes/community" ) [](https://discord.com/channels/723455000604573736) diff --git a/adr/002-Custom-Resource-Deserialization-Problem.md b/adr/002-Custom-Resource-Deserialization-Problem.md index d1314f73a7..0f648105fc 100644 --- a/adr/002-Custom-Resource-Deserialization-Problem.md +++ b/adr/002-Custom-Resource-Deserialization-Problem.md @@ -8,7 +8,7 @@ accepted In case there are multiple versions of a custom resource it can happen that a controller/informer tracking such a resource might run into deserialization problem as shown -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) +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) . Such case is possible (as seen in the test) if there are no conversion hooks in place, so the two custom resources which have different version are stored in the original form (not converted) and are not compatible. diff --git a/docs/_data/navbar.yml b/docs/_data/navbar.yml index ae95f15c5c..0827956a3b 100644 --- a/docs/_data/navbar.yml +++ b/docs/_data/navbar.yml @@ -13,7 +13,7 @@ button: default type: discord - title: Contribute - url: https://github.com/java-operator-sdk/java-operator-sdk + url: https://github.com/operator-framework/java-operator-sdk button: default type: github diff --git a/docs/index.html b/docs/index.html index 3ec0499797..d95504c4d6 100644 --- a/docs/index.html +++ b/docs/index.html @@ -122,7 +122,7 @@
- Get in touch either on GitHub or our Discord server, we are always + Get in touch either on GitHub or our Discord server, we are always happy to chat and help you find the right issue to get started. Feel free to stop by for questions, comments or just saying "Hi". @@ -130,17 +130,17 @@
We have a code of conduct which we strictly enforce, as well as issues + href="https://github.com/operator-framework/java-operator-sdk/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22">issues marked for new joiners.
We are also supporting #HacktoberFest and have several issues marked as good + href="https://github.com/operator-framework/java-operator-sdk/issues?q=is%3Aissue+is%3Aopen+label%3A%22hacktoberfest%22+"> good candidates to pick up during the event.
- * See this issue + * See this issue * for more details. *
* diff --git a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/CRUDNoGCKubernetesDependentResource.java b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/CRUDNoGCKubernetesDependentResource.java index f1e83ff1b1..e335ef74e5 100644 --- a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/CRUDNoGCKubernetesDependentResource.java +++ b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/dependent/kubernetes/CRUDNoGCKubernetesDependentResource.java @@ -12,7 +12,7 @@ * garbage collected by Kubernetes when the associated primary resource is destroyed, instead * explicitly deleted. This is useful when resource needs to be deleted before another one in a * workflow, in other words an ordering matters during a cleanup. See also: - * Related issue + * Related issue * * @paramthe type of the associated primary resource diff --git a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/PrimaryToSecondaryMapper.java b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/PrimaryToSecondaryMapper.java index cc03afde4e..9a5bfbac5d 100644 --- a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/PrimaryToSecondaryMapper.java +++ b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/processing/event/source/PrimaryToSecondaryMapper.java @@ -29,7 +29,7 @@ *
** You can see an example of this in action in the Reconciler + * "https://github.com/operator-framework/java-operator-sdk/blob/main/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/primarytosecondary/JobReconciler.java">Reconciler * for the PrimaryToSecondaryIT integration tests that handles many-to-many relationship. *
* diff --git a/operator-framework/src/test/java/io/javaoperatorsdk/operator/InformerRelatedBehaviorITS.java b/operator-framework/src/test/java/io/javaoperatorsdk/operator/InformerRelatedBehaviorITS.java index 60d9f8f076..e55b692a12 100644 --- a/operator-framework/src/test/java/io/javaoperatorsdk/operator/InformerRelatedBehaviorITS.java +++ b/operator-framework/src/test/java/io/javaoperatorsdk/operator/InformerRelatedBehaviorITS.java @@ -163,7 +163,7 @@ private void assertInformerNotWatchingForAdditionalNamespace(Operator operator) // this will be investigated separately under the issue below, it's not crucial functional wise, // it is rather "something working why it should", not other way around; but it's not a // showstopper - // https://github.com/java-operator-sdk/java-operator-sdk/issues/1835 + // https://github.com/operator-framework/java-operator-sdk/issues/1835 @Disabled @Test void resilientForLoosingPermissionForCustomResource() { diff --git a/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/standalonedependent/StandaloneDependentTestReconciler.java b/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/standalonedependent/StandaloneDependentTestReconciler.java index 70b119c2ab..4b20bdccb3 100644 --- a/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/standalonedependent/StandaloneDependentTestReconciler.java +++ b/operator-framework/src/test/java/io/javaoperatorsdk/operator/sample/standalonedependent/StandaloneDependentTestReconciler.java @@ -53,7 +53,7 @@ public UpdateControl