Author: stevel
Date: Thu Nov 19 18:41:10 2015
New Revision: 1715236

URL: http://svn.apache.org/viewvc?rev=1715236&view=rev
Log:
SLIDER-995 Add option to declare that a keytab *must* exist when launching an 
app

Modified:
    incubator/slider/site/trunk/content/docs/client-configuration.md

Modified: incubator/slider/site/trunk/content/docs/client-configuration.md
URL: 
http://svn.apache.org/viewvc/incubator/slider/site/trunk/content/docs/client-configuration.md?rev=1715236&r1=1715235&r2=1715236&view=diff
==============================================================================
--- incubator/slider/site/trunk/content/docs/client-configuration.md (original)
+++ incubator/slider/site/trunk/content/docs/client-configuration.md Thu Nov 19 
18:41:10 2015
@@ -187,7 +187,7 @@ a limited number of slider-specific conf
       <name>slider.yarn.queue.priority</name>
       <value>1</value>
     </property>
-
+    
     <property>
       <name>slider.yarn.restart.limit</name>
       <value>0</value>
@@ -204,6 +204,24 @@ a limited number of slider-specific conf
       <name>slider.data.directory.permissions</name>
       <value>750</value>
     </property>
+    
+    <property>
+      <name>slider.yarn.queue</name>
+      <value></value>
+      <description>the name of the YARN queue to use.</description>
+    </property>
+    
+    <property>
+      <name>slider.yarn.queue.priority</name>
+      <value>1</value>
+      <description>the priority of the application.</description>
+    </property>
+    
+    <property>
+      <name>slider.am.login.keytab.required</name>
+      <value>false</value>
+      <description>Declare that a keytab must be provided.</description>
+    </property>    
 
 ### `slider.yarn.restart.limit` - set limit on Application Master Restarts
 
@@ -224,15 +242,15 @@ places an upper limit on the number of r
 If the application fails after less restarts than requested, check this cluster
 setting.
 
-### `slider.yarn.queue` - the name of the YARN queue for the cluster.
+### `slider.yarn.queue` - the name of the YARN queue to use.
 
 This identifies the queue submit the application creation request to, which can
 define the priority, resource limits and other values of an application. All
-containers created in the Slider cluster will share this same queue.
+containers created in the Slider application will share this same queue.
 
 Default value: `default`.
 
-### `slider.yarn.queue.priority` - the name of the YARN queue for the cluster.
+### `slider.yarn.queue.priority` - the priority of the application.
 
 This identifies the priority within the queue. The lower the value, the higher 
the
 priority
@@ -263,6 +281,18 @@ that contains the application data `${us
     </property>
 
 
+#### `slider.am.login.keytab.required`
+
+Flag to indicate that a keytab must be present for the AM. If unset then 
slider applications launched in a secure cluster will fail after 24h.
+
+    <property>
+      <name>slider.am.login.keytab.required</name>
+      <value>false</value>
+      <description>Declare that a keytab must be provided.</description>
+    </property>
+
+
+
 ## YARN Registry binding
 
 


Reply via email to