Mike Hummel
Results
11
comments of
Mike Hummel
Add `.withOverhead(null)` did the trick and it's working. The same with objects: ``` var body = Yaml.loadAs(yaml, V1Pod.class); if (body.getSpec().getOverhead() != null && body.getSpec().getOverhead().size() == 0) { body.getSpec().setOverhead(null); } return...