Skip to content

Commit

Permalink
clean double to lower
Browse files Browse the repository at this point in the history
  • Loading branch information
hurzelpurzel committed Oct 30, 2024
1 parent 470fb50 commit d529bb9
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 = strings.ToLower(volume.VolumeName)
volumeName = volume.VolumeName
}
volMount := api.VolumeMount{
Name: volumeName,
Expand Down

0 comments on commit d529bb9

Please sign in to comment.