AMBARI-19059 Falcon quicklinks combobox is absent (dsen)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/431d2659 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/431d2659 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/431d2659 Branch: refs/heads/branch-dev-patch-upgrade Commit: 431d2659c67f7c07fe704b67eded4f83fe30d25a Parents: 89b9cf5 Author: Dmytro Sen <[email protected]> Authored: Mon Dec 5 17:25:35 2016 +0200 Committer: Dmytro Sen <[email protected]> Committed: Mon Dec 5 17:25:35 2016 +0200 ---------------------------------------------------------------------- .../FALCON/0.5.0.2.1/metainfo.xml | 7 ++++ .../FALCON/0.5.0.2.1/quicklinks/quicklinks.json | 35 ++++++++++++++++++++ 2 files changed, 42 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/431d2659/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/metainfo.xml b/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/metainfo.xml index 7dab615..2cda70a 100644 --- a/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/metainfo.xml +++ b/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/metainfo.xml @@ -131,6 +131,13 @@ <excluded-config-types> <config-type>oozie-site</config-type> </excluded-config-types> + + <quickLinksConfigurations> + <quickLinksConfiguration> + <fileName>quicklinks.json</fileName> + <default>true</default> + </quickLinksConfiguration> + </quickLinksConfigurations> </service> </services> </metainfo> http://git-wip-us.apache.org/repos/asf/ambari/blob/431d2659/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/quicklinks/quicklinks.json ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/quicklinks/quicklinks.json b/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/quicklinks/quicklinks.json new file mode 100644 index 0000000..cc81fca --- /dev/null +++ b/ambari-server/src/main/resources/common-services/FALCON/0.5.0.2.1/quicklinks/quicklinks.json @@ -0,0 +1,35 @@ +{ + "name": "default", + "description": "default quick links configuration", + "configuration": { + "protocol": + { + "type":"https", + "checks":[ + { + "property":"falcon.enableTLS", + "desired":"true", + "site":"falcon-startup-properties" + } + ] + }, + + "links": [ + { + "name": "falcon_dashboard", + "label": "Falcon Dashboard", + "requires_user_name": "true", + "component_name": "FALCON_SERVER", + "url": "%@://%@:%@/", + "port":{ + "http_property": "falcon_port", + "http_default_port": "15000", + "https_property": "falcon_port", + "https_default_port": "15443", + "regex": "^(\\d+)$", + "site": "falcon-env" + } + } + ] + } +} \ No newline at end of file
