You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sentry.apache.org by sp...@apache.org on 2017/08/29 19:06:49 UTC

sentry git commit: SENTRY-1836 - Add sentry web service config in service template - Reviewed by: Dapeng Sun.

Repository: sentry
Updated Branches:
  refs/heads/master d30febf1a -> 49e4958f3


SENTRY-1836 - Add sentry web service config in service template
 - Reviewed by: Dapeng Sun.


Project: http://git-wip-us.apache.org/repos/asf/sentry/repo
Commit: http://git-wip-us.apache.org/repos/asf/sentry/commit/49e4958f
Tree: http://git-wip-us.apache.org/repos/asf/sentry/tree/49e4958f
Diff: http://git-wip-us.apache.org/repos/asf/sentry/diff/49e4958f

Branch: refs/heads/master
Commit: 49e4958f3d64af1563ce65ccc85b2896d55a0038
Parents: d30febf
Author: Donghui Xu <xu...@zte.com.cn>
Authored: Mon Jul 24 15:25:35 2017 +0800
Committer: Sergio Pena <se...@cloudera.com>
Committed: Tue Aug 29 14:06:31 2017 -0500

----------------------------------------------------------------------
 conf/sentry-site.xml.service.template | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/sentry/blob/49e4958f/conf/sentry-site.xml.service.template
----------------------------------------------------------------------
diff --git a/conf/sentry-site.xml.service.template b/conf/sentry-site.xml.service.template
index a49b221..e491660 100644
--- a/conf/sentry-site.xml.service.template
+++ b/conf/sentry-site.xml.service.template
@@ -123,4 +123,34 @@
     <description>Service Kerberos principal</description>
   </property>
 
+  <property>
+    <name>sentry.service.web.enable</name>
+    <value>false</value>
+    <description>Enable web service</description>
+  </property>
+
+  <property>
+    <name>sentry.service.web.authentication.type</name>
+    <value>NONE</value>
+    <description>Options: kerberos, NONE.  Authentication mode for Sentry web service.</description>
+  </property>
+
+  <property>
+    <name>sentry.service.web.authentication.kerberos.keytab</name>
+    <value></value>
+    <description>Keytab for web service principal</description>
+  </property>
+
+  <property>
+    <name>sentry.service.web.authentication.kerberos.principal</name>
+    <value></value>
+    <description>Web service Kerberos principal</description>
+  </property>
+
+  <property>
+    <name>sentry.service.web.authentication.allow.connect.users</name>
+    <value></value>
+    <description>comma separated list of users - List of users that are allowed to connect to the web service (eg Hive, Impala) </description>
+  </property>
+
 </configuration>
\ No newline at end of file