David Berkman
David Berkman
The JPA spec. allows for both field access (vie field reflection) and property access (via implied getXXX()/setXXX() methods) to be used to read/write Entity level properties. This switch occurs depending...
The title says what our setup is, but, to reiterate, we're deploying memcached in k8s with the bitnami helm chart. We're adding an elb load balancer via k8s annotation to...
Windows 11... ``` C:\Users\david\Documents\graal-js-jdk11-maven-demo>mvn package [INFO] Scanning for projects... [INFO] [INFO] ----------------------< com.mycompany.app:my-app >---------------------- [INFO] Building my-app 1.0-SNAPSHOT [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] --- maven-resources-plugin:2.6:resources (default-resources) @ my-app ---...
With 2.3.0 I have a base class... ``` pubic abstract class Durable { @Id private I id; @Override public I getId () { return id; } @Override public void setId...
Using terraform-aws-modules/eks/aws version 20.14.0 and terraform-aws-modules/eks/aws//modules/aws-auth version 20.15.0, with config... ``` module "aeks-aws-auth" { source = "terraform-aws-modules/eks/aws//modules/aws-auth" version = "20.15.0" manage_aws_auth_configmap = true aws_auth_roles = [ { rolearn = data.aws_iam_role.karpenter_instance.arn...
With the cluster-autoscaler, using the helm chart (both 9.36.0 and 9.37.0), in AAWS EKS, the component works fine in k8s 1.29 and fails in k8s 1.30 with... I0626 21:53:36.018910 1...
### Search first - [X] I searched and no similar issues were found ### Description We use H2 with liquibase to do our testing. That's our install of H2 (via...
The import is... ``` org.asciidoctor asciidoctorj 3.0.0 ``` ...but I see the same 2.5.7. The code is... ``` try (Asciidoctor asciidoctor = Asciidoctor.Factory.create()) { return asciidoctor.convert(, Options.builder().build()); } ``` ...and...
I have a an installation of Grizzly which I start programmatically and add Tyrus to. Unfortunately Tyrus is not helpful in this endeavor. 1) TyrusGrizzlyServerContainer assumes a stand alone start...
I'm running docker-registry-ui with docker compose. Our private registry, running on another server, uses token auth, and we have a custom auth server, and that has been working fine for...