From 964ffa06c4d099ec7a26e31d3dbcc0cac5829cec Mon Sep 17 00:00:00 2001 From: csviri Date: Wed, 17 Feb 2021 18:23:49 +0100 Subject: [PATCH 1/2] update blog links --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index cb2c0ed055..355ec85063 100644 --- a/README.md +++ b/README.md @@ -19,8 +19,9 @@ Build Kubernetes Operators in Java without hassle. Inspired by [operator-sdk](ht * Retry action on failure * Smart event scheduling (only handle the latest event for the same resource) -Check out this [blog post](https://blog.container-solutions.com/a-deep-dive-into-the-java-operator-sdk) -about the non-trivial yet common problems needed to be solved for every operator. +Check out this [blog post](https://csviri.medium.com/java-operator-sdk-introduction-to-event-sources-a1aab5af4b7b) +about the non-trivial yet common problems needed to be solved for every operator. In case you are interested how to +handle more complex scenarios take a look on [event sources](https://csviri.medium.com/java-operator-sdk-introduction-to-event-sources-a1aab5af4b7b). #### Why build your own Operator? * Infrastructure automation using the power and flexibility of Java. See [blog post](https://blog.container-solutions.com/cloud-native-java-infrastructure-automation-with-kubernetes-operators). From 36af777ef5869bf4b0a4273aeb4ad75d45b865e6 Mon Sep 17 00:00:00 2001 From: csviri Date: Wed, 17 Feb 2021 18:30:19 +0100 Subject: [PATCH 2/2] fix for link --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 355ec85063..fa2e101bd6 100644 --- a/README.md +++ b/README.md @@ -19,7 +19,7 @@ Build Kubernetes Operators in Java without hassle. Inspired by [operator-sdk](ht * Retry action on failure * Smart event scheduling (only handle the latest event for the same resource) -Check out this [blog post](https://csviri.medium.com/java-operator-sdk-introduction-to-event-sources-a1aab5af4b7b) +Check out this [blog post](https://csviri.medium.com/deep-dive-building-a-kubernetes-operator-sdk-for-java-developers-5008218822cb) about the non-trivial yet common problems needed to be solved for every operator. In case you are interested how to handle more complex scenarios take a look on [event sources](https://csviri.medium.com/java-operator-sdk-introduction-to-event-sources-a1aab5af4b7b).