Skip to content

Commit

Permalink
Fix getImageArgs in AbstractDatabase
Browse files Browse the repository at this point in the history
  • Loading branch information
tommaso-borgato committed Nov 6, 2024
1 parent 638ffbb commit 9907453
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ public DeploymentConfigBuilder configureDeployment(ApplicationBuilder appBuilder
final DeploymentConfigBuilder builder = appBuilder.deploymentConfig(getDeploymentConfigName());
ContainerBuilder tmp = builder.podTemplate().container().fromImage(getImageName()).envVars(getImageVariables())
.port(getPort());
getImageArgs().forEach(tmp::args);
if (getImageArgs() != null)
getImageArgs().forEach(tmp::args);
if (synchronous) {
builder.onConfigurationChange();
builder.synchronousDeployment();
Expand Down

0 comments on commit 9907453

Please sign in to comment.