Merge pull request #106 from rhatdan/DType

Move no Dtype on Overlay from Error to warning.
This commit is contained in:
Daniel J Walsh 2017-09-29 16:19:44 -04:00 committed by GitHub
commit 6f4e12a6e6
2 changed files with 4 additions and 2 deletions

View File

@ -42,7 +42,7 @@ The `storage` table supports the following options:
Default Copy On Write (COW) container storage driver
**additionalimagestores**=[]
Paths to additional congtainer image stores. Usually these are read/only and stored on remote network shares.
Paths to additional container image stores. Usually these are read/only and stored on remote network shares.
**size**=""
Maximum size of a container image. Default is 10GB. This flag can be used to set quota

View File

@ -183,7 +183,9 @@ func Init(home string, options []string, uidMaps, gidMaps []idtools.IDMap) (grap
return nil, err
}
if !supportsDType {
return nil, overlayutils.ErrDTypeNotSupported("overlay", backingFs)
logrus.Warn(overlayutils.ErrDTypeNotSupported("overlay", backingFs))
// TODO: Will make fatal when CRI-O Has AMI built on RHEL7.4
// return nil, overlayutils.ErrDTypeNotSupported("overlay", backingFs)
}
d := &Driver{