kerneltime opened a new pull request, #3553: URL: https://github.com/apache/ozone/pull/3553
Buckets created via S3 should not allow read access for usersin same group ## What changes were proposed in this pull request? Buckets created via S3 should not allow read access for users ## What is the link to the Apache JIRA https://issues.apache.org/jira/browse/HDDS-6942 ## How was this patch tested? Bucket created via S3 vs ozone sh ``` bash-4.2$ aws s3api --endpoint-url http://localhost:9878 create-bucket --bucket bucket2 bash-4.2$ ozone sh bucket getacl s3v/bucket2 [ { "type" : "USER", "name" : "key", "aclScope" : "ACCESS", "aclList" : [ "ALL" ] } ] bash-4.2$ ozone sh bucket create s3v/bucket bash-4.2$ ozone sh bucket getacl s3v/bucket [ { "type" : "USER", "name" : "hadoop", "aclScope" : "ACCESS", "aclList" : [ "ALL" ] }, { "type" : "GROUP", "name" : "hadoop", "aclScope" : "ACCESS", "aclList" : [ "ALL" ] } ] bash-4.2$ ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
