Remove SupportsOwnershipManagement volume attribute

This commit is contained in:
Sami Wagiaalla
2016-01-11 11:10:55 -05:00
parent 4ac151321a
commit 7767698459
18 changed files with 54 additions and 72 deletions

View File

@@ -116,10 +116,9 @@ var _ volume.Builder = &gitRepoVolumeBuilder{}
func (b *gitRepoVolumeBuilder) GetAttributes() volume.Attributes {
return volume.Attributes{
ReadOnly: false,
Managed: true,
SupportsOwnershipManagement: false,
SupportsSELinux: true, // xattr change should be okay, TODO: double check
ReadOnly: false,
Managed: true,
SupportsSELinux: true, // xattr change should be okay, TODO: double check
}
}