Marc Nuri
Marc Nuri
## Description https://backstage.io/docs/plugins/ ## References ### gitops-profiles plugin This is a good example of a way we could implement the plugin by just providing the frontend side and connecting directly...
## Description Fixes #6100 Add specific setAdditionalProperties setter method instead. ## Type of change - [x] Bug fix (non-breaking change which fixes an issue) - [ ] Feature (non-breaking change...
## Backports - [ ] #6101 - [ ] #6102 - [ ] ... Issue to track the required tasks to release Fabric8 Kubernetes Client 6.13.2. - [ ] https://github.com/fabric8io/kubernetes-client/milestone/76...
## Description Part of #5778 Starting from version 7.0.0, the Fabric8 Kubernetes Client will require at minimum Java 11 to work. ## Tasks - [ ] Bump Maven Compiler source...
## Description Investigate possible improvements to the way we generate code today. For example, a combination of Go type-inference plus OpenAPI processing would allow to include JavaDoc to the current...
### Description Part of #5778 Issue to track the required tasks to release Fabric8 Kubernetes Client 6.13.0. - [ ] https://github.com/fabric8io/kubernetes-client/milestone/71 - [ ] Prepare release https://github.com/fabric8io/kubernetes-client/releases/tag/v7.0.0 - [ ]...
### Description The call to `String.length` can be replaced with `isEmpty` in [GoTimeUtil](https://github.com/eclipse-jkube/jkube/blob/5da6068d7756784aef9569568ee80f98da97e296/jkube-kit/enricher/api/src/main/java/org/eclipse/jkube/kit/enricher/api/util/GoTimeUtil.java). The following line: https://github.com/eclipse-jkube/jkube/blob/5da6068d7756784aef9569568ee80f98da97e296/jkube-kit/enricher/api/src/main/java/org/eclipse/jkube/kit/enricher/api/util/GoTimeUtil.java#L60 should be changed to: ```java if (duration.isEmpty()) { ``` ### :red_circle: Before you...
### Description The call to `Map.size` can be replaced with `isEmpty` in [ImageChangeTriggerEnricher](https://github.com/eclipse-jkube/jkube/blob/8aea35928d3f3157ffcfbd645001adfe4302bbb8/jkube-kit/enricher/generic/src/main/java/org/eclipse/jkube/enricher/generic/openshift/ImageChangeTriggerEnricher.java). The following line: https://github.com/eclipse-jkube/jkube/blob/8aea35928d3f3157ffcfbd645001adfe4302bbb8/jkube-kit/enricher/generic/src/main/java/org/eclipse/jkube/enricher/generic/openshift/ImageChangeTriggerEnricher.java#L82 should be changed to: ```java if (!containerToImageMap.isEmpty()) { ``` ### :red_circle: Before you...
### Description The call to `String.length` can be replaced with `isEmpty` in [DockerFileBuilderTest](https://github.com/eclipse-jkube/jkube/blob/5da6068d7756784aef9569568ee80f98da97e296/jkube-kit/config/image/src/test/java/org/eclipse/jkube/kit/config/image/build/DockerFileBuilderTest.java). The following line: https://github.com/eclipse-jkube/jkube/blob/5da6068d7756784aef9569568ee80f98da97e296/jkube-kit/config/image/src/test/java/org/eclipse/jkube/kit/config/image/build/DockerFileBuilderTest.java#L288 should be changed to: ```java if (line.trim().isEmpty()) { ``` ### :red_circle: Before you...