Add field comments to ErrRuntimeVersion

pull/11632/head
Ilya Zuyev 2021-06-21 18:43:01 -07:00
parent 476835b5a7
commit cfb44b3708
1 changed files with 3 additions and 0 deletions

View File

@ -165,8 +165,11 @@ var ErrContainerRuntimeNotRunning = errors.New("container runtime is not running
// ErrRuntimeVersion is the error returned when disk image has incompatible version of service
type ErrRuntimeVersion struct {
// Service is the name of the incompatible service
Service string
// Installed is the installed version of Service
Installed string
// Required is the minimum required version of Service
Required string
}