Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save torrespro/8af5ff91737e2d32a8e45e9eb1225930 to your computer and use it in GitHub Desktop.
Save torrespro/8af5ff91737e2d32a8e45e9eb1225930 to your computer and use it in GitHub Desktop.
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