-
I would like to pass some additional native jvm args on deployment.
While this does work, it overrides any arguments which are configured within the project over I also tried to do something like
What is a viable way in Quarkus and docker, kubernetes to pass additional native arguments at deploy time? |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 4 replies
-
/cc @geoand (jib,kubernetes), @iocanel (kubernetes), @zakkak (native-image) |
Beta Was this translation helpful? Give feedback.
-
Just to clarify, you have built the native image container with |
Beta Was this translation helpful? Give feedback.
-
Solved it with a custom native docker image
whereas the entry point script looks like echo "Build time native args: $@"
echo "Additional native jvm args: $ADDITIONAL_NATIVE_JVM_ARGS"
/work/application $@ $ADDITIONAL_NATIVE_JVM_ARGS |
Beta Was this translation helpful? Give feedback.
Solved it with a custom native docker image
whereas the entry point script looks like