You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@ambari.apache.org by Di Li <di...@ca.ibm.com> on 2015/11/13 23:36:33 UTC

Review Request 40311: AMBARI-11964: Allow services to hide "custom" configurations

-----------------------------------------------------------
This is an automatically generated e-mail. To reply, visit:
https://reviews.apache.org/r/40311/
-----------------------------------------------------------

Review request for Ambari and Alexandr Antonenko.


Bugs: AMBARI-11964
    https://issues.apache.org/jira/browse/AMBARI-11964


Repository: ambari


Description
-------

Ambari backend already has such attribute defined for each configType (JIRA AMBARI-7404). It's called "supports_adding_forbidden". The same as "supports_final", you need to set it at the configType level. For example, if you want Ambari web UI to not show Custom hdfs-site for HDFS, you should have the "configuration" section set like this <configuration supports_final="true" supports_adding_forbidden="true">, in the hdfs-site.xml.

The issue here is that even though the Ambari server backend sends this information to the UI as a JSON string, UI currently does not process it, thus no show/hide the Custom... sections behavior observed even when the attribute is set to true.

The patch here proposed a fix to have the UI process the value and show/hide the Custom... sections accordingly.


Diffs
-----

  ambari-web/app/utils/config.js 1fba4d0 
  ambari-web/app/views/common/configs/service_config_view.js 0ef2112 
  ambari-web/app/views/common/configs/service_configs_by_category_view.js ffbea76 
  ambari-web/test/utils/config_test.js e3906af 
  ambari-web/test/views/common/configs/service_config_view_test.js 1f0cd60 

Diff: https://reviews.apache.org/r/40311/diff/


Testing
-------

1. New unit tests.

2. Patched a cluster installed with trunk Ambari build, update various ...site.xml to have the supports_adding_forbidden attribute set to true, restart ambari server, reload UI, verify the corresponding Custom... sections are gone.


Thanks,

Di Li