From 1d684e7ae726fc346cf8ecfda35fe4ef13d6fe48 Mon Sep 17 00:00:00 2001 From: csviri Date: Fri, 16 Jun 2023 09:49:49 +0200 Subject: [PATCH] fix: change links after migration to operator framework --- CONTRIBUTING.md | 4 ++-- README.md | 2 +- adr/002-Custom-Resource-Deserialization-Problem.md | 2 +- docs/_data/navbar.yml | 2 +- docs/index.html | 8 ++++---- docs/releases.html | 2 +- operator-framework-bom/pom.xml | 4 ++-- .../operator/api/config/ResourceConfiguration.java | 2 +- .../api/reconciler/dependent/GarbageCollected.java | 2 +- .../kubernetes/CRUDNoGCKubernetesDependentResource.java | 2 +- .../processing/event/source/PrimaryToSecondaryMapper.java | 2 +- .../operator/InformerRelatedBehaviorITS.java | 2 +- .../StandaloneDependentTestReconciler.java | 2 +- pom.xml | 4 ++-- 14 files changed, 20 insertions(+), 20 deletions(-) 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 @@ # ![java-operator-sdk](docs/assets/images/logo.png) -![Java CI with Maven](https://github.com/java-operator-sdk/java-operator-sdk/actions/workflows/snapshot-releases.yml/badge.svg) +![Java CI with Maven](https://github.com/operator-framework/java-operator-sdk/actions/workflows/snapshot-releases.yml/badge.svg) [![Slack](https://img.shields.io/badge/Slack-4A154B?style=flat-square&logo=slack&logoColor=white)](https://kubernetes.slack.com/archives/CAW0GV7A5 "get invite here: https://communityinviter.com/apps/kubernetes/community" ) [![Discord](https://img.shields.io/discord/723455000604573736.svg?label=&logo=discord&logoColor=ffffff&color=7389D8&labelColor=6A7EC2)](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 @@

We are a friendly team of Java

- 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 are a friendly team of Java

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.

diff --git a/docs/releases.html b/docs/releases.html index bc4f52cbb7..3e985b759f 100644 --- a/docs/releases.html +++ b/docs/releases.html @@ -21,5 +21,5 @@

{{release.tag {%- endfor -%} -

More details and older releases are available on GitHub

+

More details and older releases are available on GitHub

\ No newline at end of file diff --git a/operator-framework-bom/pom.xml b/operator-framework-bom/pom.xml index f9937efe1a..e06b02093f 100644 --- a/operator-framework-bom/pom.xml +++ b/operator-framework-bom/pom.xml @@ -9,7 +9,7 @@ Operator SDK - Bill of Materials pom Java SDK for implementing Kubernetes operators - https://github.com/java-operator-sdk/java-operator-sdk + https://github.com/operator-framework/java-operator-sdk @@ -31,7 +31,7 @@ scm:git:git://github.com/java-operator-sdk/java-operator-sdk.git scm:git:git@github.com/java-operator-sdk/java-operator-sdk.git - https://github.com/java-operator-sdk/java-operator-sdk/tree/master + https://github.com/operator-framework/java-operator-sdk/tree/master diff --git a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ResourceConfiguration.java b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ResourceConfiguration.java index d3a8379d46..b704e89783 100644 --- a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ResourceConfiguration.java +++ b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ResourceConfiguration.java @@ -133,7 +133,7 @@ default Set getEffectiveNamespaces() { * * See {@link io.javaoperatorsdk.operator.processing.event.source.cache.BoundedItemStore} and * + * "https://github.com/operator-framework/java-operator-sdk/blob/d6eda0138dba6d93c0ff22a5ffcaa7663fa65ca2/caffein-bounded-cache-support/src/main/java/io/javaoperatorsdk/operator/processing/event/source/cache/CaffeinBoundedCache.java"> * CaffeinBoundedCache * * @return Optional ItemStore implementation. If present this item store will be used inside the diff --git a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/dependent/GarbageCollected.java b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/dependent/GarbageCollected.java index 4fccb7a7d0..91afbf5e5c 100644 --- a/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/dependent/GarbageCollected.java +++ b/operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/reconciler/dependent/GarbageCollected.java @@ -19,7 +19,7 @@ * primary resource will be automatically added to this managed resource. *

*

- * 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 * * @param the type of the managed dependent resource * @param

the 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 reconcile( } if (deployment.get().getSpec().getReplicas() != primary.getSpec().getReplicaCount()) { - // see https://github.com/java-operator-sdk/java-operator-sdk/issues/924 + // see https://github.com/operator-framework/java-operator-sdk/issues/924 throw new IllegalStateException("Something went wrong withe the cache mechanism."); } return UpdateControl.noUpdate(); diff --git a/pom.xml b/pom.xml index 1a4f327692..60bddaf868 100644 --- a/pom.xml +++ b/pom.xml @@ -9,7 +9,7 @@ Operator SDK for Java Java SDK for implementing Kubernetes operators pom - https://github.com/java-operator-sdk/java-operator-sdk + https://github.com/operator-framework/java-operator-sdk @@ -31,7 +31,7 @@ scm:git:git://github.com/java-operator-sdk/java-operator-sdk.git scm:git:git@github.com/java-operator-sdk/java-operator-sdk.git - https://github.com/java-operator-sdk/java-operator-sdk/tree/main + https://github.com/operator-framework/java-operator-sdk/tree/main