kubernetes-client icon indicating copy to clipboard operation
kubernetes-client copied to clipboard

Java client for Kubernetes & OpenShift

Results 426 kubernetes-client issues
Sort by recently updated
recently updated
newest added

### Describe the bug ``` Run: kubectl get pod -l app.kubernetes.io/name=timer-log Exception in thread "main" java.util.ServiceConfigurationError: io.fabric8.kubernetes.api.model.KubernetesResource: io.fabric8.kubernetes.api.model.LimitRange not a subtype at java.base/java.util.ServiceLoader.fail(ServiceLoader.java:593) at java.base/java.util.ServiceLoader$LazyClassPathLookupIterator.hasNextService(ServiceLoader.java:1244) at java.base/java.util.ServiceLoader$LazyClassPathLookupIterator.hasNext(ServiceLoader.java:1273) at java.base/java.util.ServiceLoader$2.hasNext(ServiceLoader.java:1309) at...

### Describe the bug Here's an example on using `.sinceTime()` https://github.com/fabric8io/kubernetes-client/blob/08e54a9fa6da1d7eacd894f8251f3ae7848b6961/doc/CHEATSHEET.md#L2342-L2345 When I use this with a timezoned timestamp with fabric8 kubernetes client 6.13.0, I get an exception from the...

bug

## Description Adds a new annotation `@Categories` that enables users of the CRD generator to set categories in the generated CRD. Closes #5795 ## Type of change - [ ]...

## Description Part of #6130 Replace model generation for `chaosmesh` module with new OpenAPI approach. > [!Note] > For extension models there are going to be multiple conflicts with the...

component/extensions
component/go-generator

### Is your task related to a problem? Please describe To align with the upcoming `@AdditionalPrinterColumn` annotation and to make this typesafe, the type of `format` in `@PrinterColumn` should be...

## Description Add support for the following validation constraints: - exclusiveMinimum / exclusiveMaximum by extending `@Min` and `@Max` annotations - minLength / maxLength for strings with new `@Size` annotation -...

## Description Part of #6130 Add missing buildable references to OpenAPI Maven Plugin. ``` @BuildableReference(EnvVar.class), @BuildableReference(ContainerPort.class), @BuildableReference(Volume.class), @BuildableReference(VolumeMount.class) ``` These references were added only to the Kubernetes extensions since the...

component/extensions
component/kubernetes-model
component/openshift-model

## Description Fixes #5958 Relates to #5950 Add CRD-Generator CLI application (using api-v2). Usage: ``` crd-gen [-hVv] [--force-index] [--force-scan] [--implicit-preserve-unknown-fields] [--no-parallel] [-o=] [-cp=]... [--exclude-package=]... [--include-package=]... ... Description: Fabric8 CRD-Generator Generate...

### Is your enhancement related to a problem? Please describe I have a Java `enum` that is generated from an Open API spec, and the generated `enum` uses `@JsonValue` on...

### Is your task related to a problem? Please describe kubenetes version:1.29.1 kubenetes-client 6.13.4 when i exec the following code: DeploymentRollback deploymentRollback = new DeploymentRollbackBuilder() .withApiVersion("app/v1") .withName(name) .withRollbackTo(new RollbackConfig(revision)).build(); kubernetesClient.apps().deployments().inNamespace(K8SConfig.K8S_DEFAULT_NAMESPACE).withName(name).rollback(deploymentRollback);...