Marc Nuri
Marc Nuri
#### ℹ️ Repository information https://github.com/eclipse-jkube/jkube https://github.com/eclipse-jkube/jkube/issues https://github.com/eclipse-jkube/jkube/issues?q=is%3Aissue+is%3Aopen+label%3A%22good+first+issue%22 **The repository has**: - [x] At least three issues with the `good first issue` label. - [x] At least 10 contributors. - [x]...
### Description The class [AbstractPortsExtractor](https://github.com/eclipse-jkube/jkube/blob/5da6068d7756784aef9569568ee80f98da97e296/jkube-kit/generator/api/src/main/java/org/eclipse/jkube/generator/api/support/AbstractPortsExtractor.java#L156) presents the issue: 'StringBuilder' can be replaced with 'String'. The following line: https://github.com/eclipse-jkube/jkube/blob/5da6068d7756784aef9569568ee80f98da97e296/jkube-kit/generator/api/src/main/java/org/eclipse/jkube/generator/api/support/AbstractPortsExtractor.java#L156 should be changed to: ```java flat.put(stringKey + DOT + entry.getKey(), ``` ###...
### Description The class [BaseGenerator](https://github.com/eclipse-jkube/jkube/blob/36a35f6851bb2aa025f6d03c89a179590761ddd6/jkube-kit/generator/api/src/main/java/org/eclipse/jkube/generator/api/support/BaseGenerator.java#L19) presents the issue: Unused import 'import java.util.Collections;'. The following line: https://github.com/eclipse-jkube/jkube/blob/36a35f6851bb2aa025f6d03c89a179590761ddd6/jkube-kit/generator/api/src/main/java/org/eclipse/jkube/generator/api/support/BaseGenerator.java#L19 should be removed. ### :red_circle: Before you start :red_circle: :point_down: :point_down: :point_down: :point_down: :point_down:...
### Description The class [GradleUtil](https://github.com/eclipse-jkube/jkube/blob/edd44d90d52a013f33d22cd38f682b59facef53b/gradle-plugin/kubernetes/src/main/java/org/eclipse/jkube/gradle/plugin/GradleUtil.java#L117) presents the issue: Explicit type argument Configuration can be replaced with . The following line: https://github.com/eclipse-jkube/jkube/blob/edd44d90d52a013f33d22cd38f682b59facef53b/gradle-plugin/kubernetes/src/main/java/org/eclipse/jkube/gradle/plugin/GradleUtil.java#L117 should be changed to: ```java return new ArrayList(gradleProject.getConfigurations()).stream() ```...
### Description The class [DebugService](https://github.com/eclipse-jkube/jkube/blob/f5bfbe963d9d77fc89ddfddcb4a803351430ad35/jkube-kit/config/service/src/main/java/org/eclipse/jkube/kit/config/service/DebugService.java#L32) presents the issue: Unused import 'import org.eclipse.jkube.kit.config.image.build.JKubeBuildStrategy;'. The following line: https://github.com/eclipse-jkube/jkube/blob/f5bfbe963d9d77fc89ddfddcb4a803351430ad35/jkube-kit/config/service/src/main/java/org/eclipse/jkube/kit/config/service/DebugService.java#L32 should be removed. ### :red_circle: Before you start :red_circle: :point_down: :point_down: :point_down: :point_down: :point_down:...
### Description The class [MicronautGenerator](https://github.com/eclipse-jkube/jkube/blob/239ef826edd3f894191b728e460877e25d924c08/jkube-kit/jkube-kit-micronaut/src/main/java/org/eclipse/jkube/micronaut/generator/MicronautGenerator.java#L46) presents the issue: Lambda can be replaced with method reference. The following line: https://github.com/eclipse-jkube/jkube/blob/239ef826edd3f894191b728e460877e25d924c08/jkube-kit/jkube-kit-micronaut/src/main/java/org/eclipse/jkube/micronaut/generator/MicronautGenerator.java#L46 should be changed to: ```java return nestedGenerator.getEnv(super::getEnv, prePackagePhase); ``` ### :red_circle:...
### Description The class [KubernetesWatchTaskTest](https://github.com/eclipse-jkube/jkube/blob/1868f35aafb872aae337b5b09d81878f2cce655a/gradle-plugin/kubernetes/src/test/java/org/eclipse/jkube/gradle/plugin/task/KubernetesWatchTaskTest.java#L62-L64) presents the issue: Statement lambda can be replaced with expression lambda. The following line: https://github.com/eclipse-jkube/jkube/blob/1868f35aafb872aae337b5b09d81878f2cce655a/gradle-plugin/kubernetes/src/test/java/org/eclipse/jkube/gradle/plugin/task/KubernetesWatchTaskTest.java#L62-L64 should be changed to: ```java dockerBuildServiceMockedConstruction = mockConstruction(DockerBuildService.class, (mock, ctx)...
## Description Jolokia 2.1.0 was released: https://jolokia.org/#jolokia_2_1_0_released We need to update the Jolokia dependency used in our container images (https://github.com/eclipse-jkube/jkube-images/) to use the latest version. ## Tasks - Create a...
## Description We currently have a `KubernetesHelper.printLogsAsync`: https://github.com/eclipse/jkube/blob/16020273d0dd0065249b0079b68b16aba53134e9/jkube-kit/common/src/main/java/org/eclipse/jkube/kit/common/util/KubernetesHelper.java#L384-L410 That uses additional threads that aren't even managed by a thread scheduler to take care of printing a `Container` log asynchronously. This...
### Describe the bug A `NoClassDefFoundError` has been reported several times when stopping the `remote-dev` session. This is usually thrown when there are problems when restoring the prod environment after...