Skip to content

Commit

Permalink
Revert change committed directly
Browse files Browse the repository at this point in the history
Reverts change for PR #494
  • Loading branch information
Corneil du Plessis committed Nov 12, 2024
1 parent f45535d commit c7bccf3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -653,7 +653,7 @@ Collection<Container> getInitContainers(Map<String, String> kubernetesDeployerPr
if (StringUtils.hasText(containerName) && StringUtils.hasText(imageName)) {
String commandsStr = PropertyParserUtils.getDeploymentPropertyValue(kubeProps, propertyKey + ".commands");
List<String> commands = StringUtils.hasText(commandsStr) ? Arrays.asList(commandsStr.split(",")) : Collections.emptyList();
String envString = PropertyParserUtils.getDeploymentPropertyValue(kubeProps, propertyKey + ".environmentVariables");
String envString = PropertyParserUtils.getDeploymentPropertyValue(kubeProps, propertyKey + "environmentVariables");
List<VolumeMount> vms = this.getInitContainerVolumeMounts(kubeProps, propertyKey);
return new ContainerBuilder()
.withName(containerName)
Expand Down

0 comments on commit c7bccf3

Please sign in to comment.