[ https://issues.apache.org/jira/browse/AMBARI-24833?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=16691678#comment-16691678 ]
ASF GitHub Bot commented on AMBARI-24833: ----------------------------------------- kasakrisz commented on a change in pull request #27: AMBARI-24833. HDFS client kerberos support + small fixes URL: https://github.com/apache/ambari-logsearch/pull/27#discussion_r234610512 ########## File path: ambari-logsearch-logfeeder/src/main/java/org/apache/ambari/logfeeder/conf/output/HdfsOutputConfig.java ########## @@ -62,7 +71,27 @@ sources = {LogFeederConstants.LOGFEEDER_PROPERTIES_FILE} ) @Value("${"+ LogFeederConstants.HDFS_KERBEROS + ":false}") - private boolean secure; + private boolean hdfsKerberos; + + @LogSearchPropertyDescription( + name = LogFeederConstants.HDFS_KERBEROS_KEYTAB, + description = "Kerberos keytab location for Log Feeder for communicating with secure HDFS. ", + examples = {"/etc/security/keytabs/mykeytab.keytab"}, + defaultValue = "/etc/security/keytabs/logfeeder.service.keytab", + sources = {LogFeederConstants.LOGFEEDER_PROPERTIES_FILE} + ) + @Value("${"+ LogFeederConstants.HDFS_KERBEROS_KEYTAB + ":/etc/security/keytabs/logfeeder.service.keytab}") + private String keytab; + + @LogSearchPropertyDescription( + name = LogFeederConstants.HDFS_KERBEROS_PRINCIPAL, + description = "Kerberos keytab location for Log Feeder for communicating with secure HDFS. ", Review comment: This is the same as in line 78 ---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: us...@infra.apache.org > Log Feeder: send logs to cloud storage (gcs/s3 etc.) > ---------------------------------------------------- > > Key: AMBARI-24833 > URL: https://issues.apache.org/jira/browse/AMBARI-24833 > Project: Ambari > Issue Type: Bug > Components: ambari-logsearch > Affects Versions: 2.7.0 > Reporter: Olivér Szabó > Assignee: Olivér Szabó > Priority: Major > Labels: pull-request-available > Fix For: 2.8.0 > > -- This message was sent by Atlassian JIRA (v7.6.3#76005)