Skip to content

Commit

Permalink
fix: the latter volume dirs overwrite the prior one (#1214)
Browse files Browse the repository at this point in the history
  • Loading branch information
vietanhtwdk committed Jul 10, 2024
1 parent 2c90454 commit a89353c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions pkg/modules/generators/workload/workload_generator.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,6 @@ func toOrderedContainers(

// Create a slice of volumes and configMaps based on the containers' files to be created.
var volumes []corev1.Volume
var volumeMounts []corev1.VolumeMount
var configMaps []corev1.ConfigMap

if err := modules.ForeachOrdered(appContainers, func(containerName string, c v1.Container) error {
Expand Down Expand Up @@ -128,10 +127,12 @@ func toOrderedContainers(
}

// Append the configMap, volume and volumeMount objects into the corresponding slices.
volumes, volumeMounts, configMaps, err = handleFileCreation(c, uniqueAppName, containerName)
volumesContainer, volumeMounts, configMapsContainer, err := handleFileCreation(c, uniqueAppName, containerName)
if err != nil {
return err
}
volumes = append(volumes, volumesContainer...)
configMaps = append(configMaps, configMapsContainer...)
ctn.VolumeMounts = append(ctn.VolumeMounts, volumeMounts...)

// Append more volumes and volumeMounts
Expand Down

0 comments on commit a89353c

Please sign in to comment.