Merge pull request #1641 from anderbubble/rename-container-node-image

Rename "container" to "image"
This commit is contained in:
Jonathon Anderson
2025-01-23 21:45:41 -07:00
committed by GitHub
142 changed files with 2212 additions and 2183 deletions

View File

@@ -227,7 +227,7 @@ func FindOverlays() (overlayList []string, err error) {
}
/*
Build the given overlays for a node and create a Image for them
Build the given overlays for a node and create an image for them
*/
func BuildOverlay(nodeConf node.Node, allNodes []node.Node, context string, overlayNames []string) error {
if len(overlayNames) == 0 && context == "" {
@@ -469,7 +469,7 @@ func RenderTemplateFile(fileName string, data TemplateStruct) (
// Build our FuncMap
funcMap := template.FuncMap{
"Include": templateFileInclude,
"IncludeFrom": templateContainerFileInclude,
"IncludeFrom": templateImageFileInclude,
"IncludeBlock": templateFileBlock,
"ImportLink": importSoftlink,
"basename": path.Base,