istio-java-api icon indicating copy to clipboard operation
istio-java-api copied to clipboard

A Java API to generate Istio descriptors, inspired by Fabric8's kubernetes-model.

Results 17 istio-java-api issues
Sort by recently updated
recently updated
newest added

Bumps [github.com/gogo/protobuf](https://github.com/gogo/protobuf) from 1.3.1 to 1.3.2. Release notes Sourced from github.com/gogo/protobuf's releases. Release v.1.3.2 Tested versions: go 1.15.6 protoc 3.14.0 Bug fixes: skippy peanut butter Commits b03c65e skippy peanut butter...

dependencies
go

Hi all, We are running a OWSAP dependency checker and got the following CVE CVE-2022-23635 -> CWE-287 | Location | Component Name | Component Version | Group | | ---...

- [ ] `HandlersRegistration` class is generated as source in `classes` - [ ] `IstioResourceMappingsProvider` class is generated as source in `classes` - [ ] Could not initialize class `io.fabric8.kubernetes.internal.KubernetesDeserializer`...

Hi all, We are running OWASP dependency checker and got 3 critical CVSS: ``` istio-common:1.7.7.1 | Istio Before 1.8.6 and 1.9.x Before 1.9.5 Contains a Remotely Exploitable Vulnerability Where an...

ApiVersion: 1.7.7 OpenShiftClient client = ocpService.getClient(cluster); ObjectMapper yamlMapper = new ObjectMapper(new YAMLFactory()); List hasMetadata = client.load(new ByteArrayInputStream(yaml.getBytes())).fromServer().get(); com.fasterxml.jackson.databind.exc.UnrecognizedPropertyException: Unrecognized field "status" (class me.snowdrop.istio.api.networking.v1beta1.VirtualService), not marked as ignorable (4 known properties:...

DestinationRule destinationRule = objectMapper.readValue(yaml, DestinationRule.class); Object o = istioClient.inAnyNamespace().v1alpha3DestinationRule().createOrReplace(destinationRule); java.lang.ClassCastException: class [Ljava.lang.Object; cannot be cast to class [Lio.fabric8.kubernetes.api.model.HasMetadata; ([Ljava.lang.Object; is in module java.base of loader 'bootstrap'; [Lio.fabric8.kubernetes.api.model.HasMetadata; is in unnamed...

String yaml = "---\n" + "apiVersion: \"networking.istio.io/v1beta1\"\n" + "kind: \"VirtualService\"\n" + "metadata:\n" + " name: \"golang-demo\"\n" + " namespace: \"dian-stable\"\n" + "spec:\n" + " hosts:\n" + " - \"golang-demo\"\n" +...

The version I'm using is me.snowdrop istio-client 1.7.7 io.fabric8 kubernetes-client 5.1.0 but ,When I try to list virtualService ,something is wrong ; The code : istioClient.v1alpha3VirtualService().list(listOptions); The Exception : Exception...

Hi I am trying to create a DestinationRule with LocalityLoadBalancer using istio-client 1.7.7.1 on istio 1.8.3 ``` LocalityLoadBalancerSetting localityLbSetting = new LocalityLoadBalancerSetting(null, true, null); OutlierDetection outlierDetection = new OutlierDetection(null, 3,...