Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
1.4.1
-
None
Description
Ambari's configuration for a secure cluster has yarn-site.xml with:
<property> <name>yarn.admin.acl</name> <value>*</value> </property>
which enables all users as yarn admins. It should set an empty list:
<property> <name>yarn.admin.acl</name> <value></value> </property>
yarn.admin.acl should be set to an empty list for both secure and non-secure clusters. yarn.acl.enable should be set true/false depending on whether security is turned on.