You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by al...@apache.org on 2019/03/07 16:05:39 UTC

[ambari] branch branch-2.7 updated: AMBARI-25182. Add 'hadoop.kms.authentication.zk-dt-secret-manager.enable' property during multiple Ranger KMS

This is an automated email from the ASF dual-hosted git repository.

alexantonenko pushed a commit to branch branch-2.7
in repository https://gitbox.apache.org/repos/asf/ambari.git


The following commit(s) were added to refs/heads/branch-2.7 by this push:
     new 13bc515  AMBARI-25182. Add 'hadoop.kms.authentication.zk-dt-secret-manager.enable' property during multiple Ranger KMS
     new 21b5ba0  Merge pull request #2851 from hiveww/AMBARO-25182-branch2.7
13bc515 is described below

commit 13bc515d0c934f0ed6b6f502b5cc731983114ff8
Author: Alex Antonenko <aa...@hortonworks.com>
AuthorDate: Thu Mar 7 14:31:17 2019 +0300

    AMBARI-25182. Add 'hadoop.kms.authentication.zk-dt-secret-manager.enable' property during multiple Ranger KMS
---
 ambari-web/app/controllers/main/host/details.js       | 5 +++++
 ambari-web/test/controllers/main/host/details_test.js | 2 ++
 2 files changed, 7 insertions(+)

diff --git a/ambari-web/app/controllers/main/host/details.js b/ambari-web/app/controllers/main/host/details.js
index af69681..0c02add 100644
--- a/ambari-web/app/controllers/main/host/details.js
+++ b/ambari-web/app/controllers/main/host/details.js
@@ -1451,6 +1451,11 @@ App.MainHostDetailsController = Em.Controller.extend(App.SupportClientConfigsDow
           haValue: 'false'
         },
         {
+          name: 'hadoop.kms.authentication.zk-dt-secret-manager.enable',
+          notHaValue: 'false',
+          haValue: 'true'
+        },
+        {
           name: 'hadoop.kms.cache.timeout.ms',
           notHaValue: '600000',
           haValue: '0'
diff --git a/ambari-web/test/controllers/main/host/details_test.js b/ambari-web/test/controllers/main/host/details_test.js
index 0c32d43..bd03071 100644
--- a/ambari-web/test/controllers/main/host/details_test.js
+++ b/ambari-web/test/controllers/main/host/details_test.js
@@ -3445,6 +3445,7 @@ describe('App.MainHostDetailsController', function () {
             properties: {
               'kms-site': {
                 'hadoop.kms.cache.enable': 'true',
+                'hadoop.kms.authentication.zk-dt-secret-manager.enable': 'false',
                 'hadoop.kms.cache.timeout.ms': '600000',
                 'hadoop.kms.current.key.cache.timeout.ms': '30000',
                 'hadoop.kms.authentication.signer.secret.provider': 'random',
@@ -3478,6 +3479,7 @@ describe('App.MainHostDetailsController', function () {
             properties: {
               'kms-site': {
                 'hadoop.kms.cache.enable': 'false',
+                'hadoop.kms.authentication.zk-dt-secret-manager.enable': 'true',
                 'hadoop.kms.cache.timeout.ms': '0',
                 'hadoop.kms.current.key.cache.timeout.ms': '0',
                 'hadoop.kms.authentication.signer.secret.provider': 'zookeeper',