Created
May 21, 2020 14:11
-
-
Save torrespro/8af5ff91737e2d32a8e45e9eb1225930 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CustomResourceDefinition crd = defaultClient.customResourceDefinitions() | |
.list() | |
.getItems() | |
.stream() | |
.filter(d -> "pizzas.mykubernetes.acme.org".equals(d.getMetadata().getName())) | |
.findAny() | |
.orElseThrow(() -> new RuntimeException("Deployment error: Custom resource definition mykubernetes.acme.org/v1beta2 not found.")); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment