chore(camel-test-infra-iggy): upgrade iggy.container to 0.8.0#23835
Open
github-actions[bot] wants to merge 1 commit into
Open
chore(camel-test-infra-iggy): upgrade iggy.container to 0.8.0#23835github-actions[bot] wants to merge 1 commit into
github-actions[bot] wants to merge 1 commit into
Conversation
Update iggy.container from 0.7.0 to 0.8.0
apupier
reviewed
Jun 8, 2026
apupier
left a comment
Contributor
There was a problem hiding this comment.
test failing fo rme locally:
2026-06-08T09:02:12.762392252Z main ERROR Could not start container
java.lang.IllegalStateException: Wait strategy failed. Container exited with code 101
at org.testcontainers.containers.GenericContainer.tryStart(GenericContainer.java:520)
at org.testcontainers.containers.GenericContainer.lambda$doStart$0(GenericContainer.java:341)
at org.rnorth.ducttape.unreliables.Unreliables.retryUntilSuccess(Unreliables.java:81)
at org.testcontainers.containers.GenericContainer.doStart(GenericContainer.java:331)
at org.testcontainers.containers.GenericContainer.start(GenericContainer.java:317)
at org.apache.camel.test.infra.iggy.services.IggyLocalContainerInfraService.initialize(IggyLocalContainerInfraService.java:57)
=== io_uring Permission Denied ===
The io_uring runtime requires specific syscalls that are blocked by default
in containerized environments (Docker, Podman, etc.).
To resolve this issue:
1. Docker Compose (add to service):
security_opt:
- seccomp:unconfined
2. Docker run:
docker run --security-opt seccomp=unconfined ...
3. Custom seccomp profile (more secure):
Create a profile allowing io_uring_setup, io_uring_enter,
and io_uring_register syscalls.
4. Kubernetes (add to pod spec):
securityContext:
seccompProfile:
type: Unconfined
Need help? Join our Discord: https://discord.gg/apache-iggy
thread 'main' (1) panicked at core/server/src/main.rs:121:13:
Cannot create runtime: Permission denied (os error 13)
note: run with `RUST_BACKTRACE=1` environment variable to display a backtrace
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR updates the
iggy.containercontainer image to version0.8.0.Update Details
iggy.containermirror.gcr.io/apache/iggy/home/runner/work/camel/camel/test-infra/camel-test-infra-iggy/src/main/resources/org/apache/camel/test/infra/iggy/services/container.properties0.7.00.8.0Verification
Please verify:
Run the following to rebuild the test infra:
Then test the impacted components.
This PR was automatically created by the Container Version Upgrade workflow.