Merge pull request #27347 from ooeunz/fixed-broken-link

Fixed broken link in content/en/blog/_posts/2019-11-26-cloud-native-java-controller-sdk.md
pull/27663/head
Kubernetes Prow Robot 2021-04-21 16:49:41 -07:00 committed by GitHub
commit 290dc26dba
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ Take maven project as example, adding the following dependencies into your depen
Then we can make use of the provided builder libraries to write your own controller.
For example, the following one is a simple controller prints out node information
on watch notification, see complete example [here](https://github.com/kubernetes-client/java/blob/master/examples/src/main/java/io/kubernetes/client/examples/ControllerExample.java):
on watch notification, see complete example [here](https://github.com/kubernetes-client/java/blob/master/examples/examples-release-13/src/main/java/io/kubernetes/client/examples/ControllerExample.java):
```java
...