Running tests in Kubernetes #42608
Unanswered
wonderscale
asked this question in
Q&A
Replies: 1 comment
-
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
I have a Quarkus app using Kubernetes client, Postgres, and S3, configured via the
kubernetes-config
extension. The app runs in a Kubernetes cluster. One endpoint generates pre-signed S3 URLs for uploads, and another endpoint launches Kubernetes jobs to process these files. I want to test these endpoints, avoiding mocks to eventually enable end-to-end testing.Dev Services can start k3s, Postgres, and Localstack in Docker, but the Kubernetes jobs need access to Localstack. In the Quarkus documentation, there is mention of a
quarkus.http.test-host
property to execute tests against a running application. This seems promising, but I am not sure if this is the right way to do things.Is there something I am missing? I feel like I am over-complicating things
Beta Was this translation helpful? Give feedback.
All reactions