github.com/docker/compose-on-kubernetes@v0.5.0/install/errors.go (about) 1 package install 2 3 const ( 4 // General image pull error. 5 errImagePull = "ErrImagePull" 6 ) 7 8 // IsErrImagePull checks if an error is an errImagePull 9 func IsErrImagePull(reason string) bool { 10 return reason == errImagePull 11 }