You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your enhancement related to a problem? Please describe
The kubernetes-client-bom does not include entries for the jdk/jetty http client implementations. When using either of them additional dependency management is needed.
dependency management
<properties>
<k8s.client.version>6.6.2</k8s.client.version>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>io.fabric8</groupId>
<artifactId>kubernetes-client-bom</artifactId>
<version>${k8s.client.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
+ <dependency> <!-- this GAV should be managed in the BOM -->+ <groupId>io.fabric8</groupId>+ <artifactId>kubernetes-httpclient-jdk</artifactId>+ <version>${k8s.client.version}</version>+ </dependency>
</dependencies>
</dependencyManagement>
Describe the solution you'd like
Add kubernetes-httpclient-jdk and kubernetes-httpclient-jetty to kubernetes-client-bom
Describe alternatives you've considered
Continue managing explicitly.
Additional context
The vertx client is managed in the bom
The text was updated successfully, but these errors were encountered:
Is your enhancement related to a problem? Please describe
The
kubernetes-client-bom
does not include entries for the jdk/jetty http client implementations. When using either of them additional dependency management is needed.dependency management
Describe the solution you'd like
Add
kubernetes-httpclient-jdk
andkubernetes-httpclient-jetty
tokubernetes-client-bom
Describe alternatives you've considered
Continue managing explicitly.
Additional context
The vertx client is managed in the bom
The text was updated successfully, but these errors were encountered: