Package io.quarkus.kubernetes.deployment
Interface DebugConfig
public interface DebugConfig
-
Field Summary
Fields -
Method Summary
Modifier and TypeMethodDescriptionIt specifies the address at which the debug socket will listen.default io.dekorate.kubernetes.config.Portdefault io.dekorate.kubernetes.config.Envbooleanenabled()If true, the debug mode in pods will be enabled.suspend()If enabled, it means the JVM will wait for the debugger to attach before executing the main class.The transport to use.
-
Field Details
-
PORT_NAME
- See Also:
-
JAVA_TOOL_OPTIONS
- See Also:
-
AGENTLIB_FORMAT
- See Also:
-
-
Method Details
-
enabled
@WithDefault("false") boolean enabled()If true, the debug mode in pods will be enabled. -
transport
The transport to use. -
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
It specifies the address at which the debug socket will listen. -
buildJavaToolOptionsEnv
default io.dekorate.kubernetes.config.Env buildJavaToolOptionsEnv() -
buildDebugPort
default io.dekorate.kubernetes.config.Port buildDebugPort()
-