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

@@ -330,6 +330,16 @@ func (node *Profile) Id() string {
return node.id
}
// ContainerName returns the value of the ImageName field for backwards-compatibility.
func (node *Node) ContainerName() string {
return node.ImageName
}
// ContainerName returns the value of the ImageName field for backwards-compatibility.
func (profile *Profile) ContainerName() string {
return profile.ImageName
}
/*
Returns if the node is a valid in the database
*/