mirror of https://github.com/containers/podman.git
Merge pull request #25764 from xixishidibei/main
chore: fix function name in comment
This commit is contained in:
commit
1d8947965d
|
@ -2155,7 +2155,7 @@ func getPersistentVolumeClaimVolume(vName string) *Volume {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// getConfigMap returns a new ConfigMap Volume given the name and items
|
// getConfigMapVolume returns a new ConfigMap Volume given the name and items
|
||||||
// of the ConfigMap.
|
// of the ConfigMap.
|
||||||
func getConfigMapVolume(vName string, items []map[string]string, optional bool, defaultMode *int32) *Volume { //nolint:unparam
|
func getConfigMapVolume(vName string, items []map[string]string, optional bool, defaultMode *int32) *Volume { //nolint:unparam
|
||||||
vol := &Volume{
|
vol := &Volume{
|
||||||
|
|
|
@ -429,7 +429,7 @@ func StartSystemExec(command string, args []string) *PodmanSession {
|
||||||
return &PodmanSession{session}
|
return &PodmanSession{session}
|
||||||
}
|
}
|
||||||
|
|
||||||
// tagOutPutToMap parses each string in imagesOutput and returns
|
// tagOutputToMap parses each string in imagesOutput and returns
|
||||||
// a map whose key is a repo, and value is another map whose keys
|
// a map whose key is a repo, and value is another map whose keys
|
||||||
// are the tags found for that repo. Notice, the first array item will
|
// are the tags found for that repo. Notice, the first array item will
|
||||||
// be skipped as it's considered to be the header.
|
// be skipped as it's considered to be the header.
|
||||||
|
|
Loading…
Reference in New Issue