java icon indicating copy to clipboard operation
java copied to clipboard

Official Java client library for kubernetes

Results 196 java issues
Sort by recently updated
recently updated
newest added
trafficstars

**Describe the bug** I attempted to delete a Service using the Kubernetes Java client, and while the Service was indeed removed, an exception was thrown during the operation. 03/08 17:51:58...

lifecycle/stale

**Describe the bug** When using the Java client API to fetch node details, the API throws a runtime exception and doesn't provide any details as to why the exception happened....

lifecycle/rotten

**Describe the bug** This opensource software is using an unsupported package `com.microsoft.azure:adal4j` https://github.com/AzureAD/azure-activedirectory-library-for-java which has been in maintenance in 2021 and archived in 2023. the project has been shifted to...

lifecycle/stale

**Describe the bug** Java Client is using OkHttp3.Call for most (all?) of processing. Default OkHttp3.Call doesn't have timeout configured. Which leads to problems like `apiClient` hanging in case of network...

lifecycle/stale

**Describe the bug** Patching status subresource of a CRD always fails with java client. **Client Version** `20.0.0` **Kubernetes Version** `1.29.1` **Java Version** Java 17 **To Reproduce** ```java var fooApi =...

**Describe the bug** Hello, I'm trying to patch a custom resource following this official example: https://github.com/kubernetes-client/java/blob/master/kubernetes/docs/CustomObjectsApi.md#patchNamespacedCustomObject ``` Object result = apiInstance.patchNamespacedCustomObject(group, version, namespace, plural, name, body).execute(); ``` No matter what...

kind/bug

**Describe the bug** We have an existing project that uses `client-java-api` jar. We add a new feature that uses `Kubectl` from `client-java-extended`. Extended has a transitive dependency on `client-java-api-fluent`. The...

lifecycle/rotten

This centralizes logging into the existing `ReflectorRunnable` type, notably adding conditional logging of events. This is toggled by `setDebugItems(bool)` on `SharedInformer` and `SharedInformerFactory` as `ReflectorRunnable` isn't directly accessible by end...

size/L
cncf-cla: yes

**Describe the bug** The default `overhead` value of Pod spec in version 20.0.0 is empty map which is causing the following error: ```java java.lang.RuntimeException: io.kubernetes.client.openapi.ApiException: Message: HTTP response code: 403...

lifecycle/frozen

Currently, the only HTTP client that can be used is okhttp, but we use wiremock instead of [MockWebServer](https://github.com/square/okhttp/tree/master/mockwebserver), the canonical test library for OkHttp. Here are some reasons to switch...