Skip to content

Commit

Permalink
Update kubernetes.go
Browse files Browse the repository at this point in the history
Fix issue kubernetes#1942
  • Loading branch information
hurzelpurzel authored Oct 24, 2024
1 parent eab2c01 commit a103f37
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/transformer/kubernetes/kubernetes.go
Original file line number Diff line number Diff line change
Expand Up @@ -985,7 +985,7 @@ func (k *Kubernetes) ConfigVolumes(name string, service kobject.ServiceConfig) (
volumeName = strings.Replace(volumeName, service.Name, name, 1)
count++
} else {
volumeName = volume.VolumeName
volumeName = strings.ToLower(volume.VolumeName)
}
volMount := api.VolumeMount{
Name: volumeName,
Expand Down

0 comments on commit a103f37

Please sign in to comment.