Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions hadoop-hdds/common/src/main/resources/ozone-default.xml
Original file line number Diff line number Diff line change
Expand Up @@ -2226,6 +2226,14 @@
<tag>OZONE, SECURITY, KERBEROS</tag>
<description>The OzoneManager service principal. Ex om/[email protected]</description>
</property>
<property>
<name>ozone.om.kerberos.principal.pattern</name>
<value>*</value>
<description>
A client-side RegEx that can be configured to control
allowed realms to authenticate with (useful in cross-realm env.)
</description>
</property>
<property>
<name>ozone.om.http.auth.kerberos.principal</name>
<value>HTTP/_HOST@REALM</value>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -289,6 +289,8 @@ private OMConfigKeys() {
+ "kerberos.keytab.file";
public static final String OZONE_OM_KERBEROS_PRINCIPAL_KEY = "ozone.om"
+ ".kerberos.principal";
public static final String OZONE_OM_KERBEROS_PRINCIPAL_PATTERN_KEY =
"ozone.om.kerberos.principal.pattern";
public static final String OZONE_OM_HTTP_KERBEROS_KEYTAB_FILE =
"ozone.om.http.auth.kerberos.keytab";
public static final String OZONE_OM_HTTP_KERBEROS_PRINCIPAL_KEY
Expand Down