You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The deploymentMode element is never override by configuration either in annotation or annotationless mode. DeploymentMode takes a value (dev) by default but it should be override by specific configuration if present.
Annotiation mode: @ComponentApplication(name = "hello-world", deploymentMode = DeploymentMode.build, exposeService = true, envs = @Env(name = "key1", value = "val1"))
should generate:
The
deploymentMode
element is never override by configuration either in annotation or annotationless mode.DeploymentMode
takes a value (dev
) by default but it should be override by specific configuration if present.Annotiation mode:
@ComponentApplication(name = "hello-world", deploymentMode = DeploymentMode.build, exposeService = true, envs = @Env(name = "key1", value = "val1"))
should generate:
Annotiationless mode:
application.properties like
should produce:
The text was updated successfully, but these errors were encountered: