Package io.quarkus.kubernetes.deployment
Class DebugConfig
- java.lang.Object
-
- io.quarkus.kubernetes.deployment.DebugConfig
-
public class DebugConfig extends Object
-
-
Field Summary
Fields Modifier and Type Field Description (package private) IntegeraddressPortIt specifies the address at which the debug socket will listen.(package private) booleanenabledIf true, the debug mode in pods will be enabled.(package private) StringsuspendIf enabled, it means the JVM will wait for the debugger to attach before executing the main class.(package private) StringtransportThe transport to use.
-
Constructor Summary
Constructors Constructor Description DebugConfig()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected io.dekorate.kubernetes.config.PortbuildDebugPort()protected io.dekorate.kubernetes.config.EnvbuildJavaToolOptionsEnv()
-
-
-
Field Detail
-
enabled
@ConfigItem(defaultValue="false") boolean enabled
If true, the debug mode in pods will be enabled.
-
transport
@ConfigItem(defaultValue="dt_socket") String transport
The transport to use.
-
suspend
@ConfigItem(defaultValue="n") String suspend
If enabled, it means the JVM will wait for the debugger to attach before executing the main class. If false, the JVM will immediately execute the main class, while listening for the debugger connection.
-
addressPort
@ConfigItem(defaultValue="5005") Integer addressPort
It specifies the address at which the debug socket will listen.
-
-