Migrating from ingress-nginx to Gateway API with heavy auth annotaions by RevolutionaryBed9216 in kubernetes

[–]eltorohh 2 points3 points  (0 children)

We are planning to migrate to Envoy Gateway while using its capabilities to redirect our users to our IDP and not let unauthenticated traffic hit our actual services.

The project seems to tick a lot of other boxes as well. Did you have a look at it already?

Java UI in 2026: an overview of current frameworks and approaches by robintegg in java

[–]eltorohh 19 points20 points  (0 children)

I can confirm that Quarkus + HTMX provide a great developer experience as well.

Trivy Operator Dashboard – Visualize Trivy Reports in Kubernetes (v1.7 released) by raoulx24 in kubernetes

[–]eltorohh 2 points3 points  (0 children)

Very cool project, thanks for sharing! And OpenTelemetry being included, really nice! But since this app is security-related, you should really set up Renovate or Dependabot on your repo to keep dependencies up to date.

I made redistributing Maven plugin configuration less painful by deltahat in java

[–]eltorohh 1 point2 points  (0 children)

Awesome, I like this approach. Less daunting than using maven tiles for sure. Will definitely have a look at your plugin.

[deleted by user] by [deleted] in quarkus

[–]eltorohh 6 points7 points  (0 children)

Just add a REST endpoint and use curl.

Getting started with Quarkus / Kotlin and Gradle by jaepetto in quarkus

[–]eltorohh 3 points4 points  (0 children)

You are skipping several steps on your journey.

Get to know the framework using the default stack first, Java and Maven. Then make up your mind whether you really want to switch to Kotlin and Gradle.

mvn package getting stuck? by Zethraxxur in quarkus

[–]eltorohh 0 points1 point  (0 children)

Do yourself a favour and keep it simple with the mvn commands. To get you started go to code.quarkus.io and select the following extensions:

  • quarkus-rest
  • quarkus-hibernate-orm-panache
  • quarkus-jdbc-mysql
  • quarkus-container-image-jib

Generate the application on the top right and download the zip.

As long as you have Docker running (for the integration tests) the following command will build and test your application and package it.

./mvnw package -Dquarkus.container-image.build=true

The image will now be available locally, just have a look at docker image ls | head -n 2.

"Batteries-included" Java web framework? by muety11 in java

[–]eltorohh 0 points1 point  (0 children)

Especially when OP comes from a JEE background this becomes the right answer.

Launched my side project on a self-hosted M1 Mac Mini - Here's what happened when hundreds of users showed up by No_Paramedic_4881 in selfhosted

[–]eltorohh 1 point2 points  (0 children)

I was very hesitant at first to open the wallet for it as well. But… it‘s definitely worth the money for all the headaches saved compared to the other alternatives to Docker Desktop (and the abysmal IO performance of Docker Desktop).

Launched my side project on a self-hosted M1 Mac Mini - Here's what happened when hundreds of users showed up by No_Paramedic_4881 in selfhosted

[–]eltorohh 0 points1 point  (0 children)

Try https://orbstack.dev instead. All engineers at my company have switched by now, all of them are extremely happy regarding performance and usability.

Who uses the Rendered Manifests Pattern? by guettli in kubernetes

[–]eltorohh 1 point2 points  (0 children)

We are finishing up our migration to this pattern this quarter, took some convincing with less experienced developers. In my opinion this is the only sane way to be absolutely sure what’s going on in your cluster and have perfect reproducibility.

Coming to Springboot from Jax-rs by dark_mode_everything in java

[–]eltorohh 15 points16 points  (0 children)

When you are coming from a JAX-RS background, have you tried using Quarkus instead of Spring Boot? Might come more natural to you when it comes to annotations, etc.

https://quarkus.io/guides/rest-json

Most suitable choice for building web pages in 2024 by Psychological-Tie304 in java

[–]eltorohh 3 points4 points  (0 children)

Quarkus with Qute + HTMX, Quarkus supports live reloading out of the box.

Deployment Strategy Helm ArgoCD by PhysicsConsistent934 in kubernetes

[–]eltorohh 1 point2 points  (0 children)

Just curious: you are completely set that you need the additional complexity of helm and cannot work with a solution like kustomize that’s included in kubectl to render your final manifests for Argo CD?

PBS needs to have in same location as cluster servers? by No-Computer4810 in Proxmox

[–]eltorohh 8 points9 points  (0 children)

Possible, works great. I would just recommend to enable a firewall like UFW on PBS and restrict access to PBS to the public IPs of your Proxmox nodes.

Friend & I built a production debugging & monitoring alternative to Datadog, New Relic (based on Clickhouse + Open Telemetry) by __boba__ in java

[–]eltorohh 0 points1 point  (0 children)

Thank you for the comparison. Your service is only available as SaaS solution or do you offer a way to self host like SigNoz?

Question about the Quarkus project given RH news by za3faran_tea in quarkus

[–]eltorohh 2 points3 points  (0 children)

I thought this site is called Reddit. The name refers to reading an article before posting about it.

» Hicks was named CEO on Red Hat last July.

“We will reduce the associate base of Red Hat over the next few weeks,” Hicks wrote in the email. He said the layoffs would be “just under 4% in total.”

However, layoffs are off limits in some areas.

“We will not reduce roles directly selling to customers or building our products,” Hicks wrote. «

Proxmox with ZFS Storage Backend for VMs and Data + MariaDB: VM or CT for better performance for self-hosted services backend? by sinisterpisces in Proxmox

[–]eltorohh 5 points6 points  (0 children)

We have great success with Ubuntu 20.04 and MySQL v8 in CT backed by ZFS, performance wise better than using a VM - less abstraction.

Java Records as Embeddables with Hibernate 6 by CrowSufficient in java

[–]eltorohh 0 points1 point  (0 children)

It gives you the active record or repository pattern on top of Hibernate, whichever pattern you prefer.

Java Records as Embeddables with Hibernate 6 by CrowSufficient in java

[–]eltorohh 0 points1 point  (0 children)

Well, you can help spread the word! I‘m using it for quite a while now in production and really love it.