Merge pull request #106 from rhatdan/DType
Move no Dtype on Overlay from Error to warning.
This commit is contained in:
commit
6f4e12a6e6
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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{
|
||||
|
|
|
|||
Loading…
Reference in New Issue