AMBARI-19092. HDP 3.0 support for ZK with metainfo (alejandro)
Project: http://git-wip-us.apache.org/repos/asf/ambari/repo Commit: http://git-wip-us.apache.org/repos/asf/ambari/commit/aed98397 Tree: http://git-wip-us.apache.org/repos/asf/ambari/tree/aed98397 Diff: http://git-wip-us.apache.org/repos/asf/ambari/diff/aed98397 Branch: refs/heads/branch-feature-AMBARI-18456 Commit: aed983973034114931aca387f92bae5ca0d4e169 Parents: 757267f Author: Alejandro Fernandez <[email protected]> Authored: Fri Dec 2 13:26:49 2016 -0800 Committer: Alejandro Fernandez <[email protected]> Committed: Tue Dec 6 16:52:32 2016 -0800 ---------------------------------------------------------------------- .../HDP/3.0/services/ZOOKEEPER/metainfo.xml | 54 ++++++++++++++++++++ 1 file changed, 54 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ambari/blob/aed98397/ambari-server/src/main/resources/stacks/HDP/3.0/services/ZOOKEEPER/metainfo.xml ---------------------------------------------------------------------- diff --git a/ambari-server/src/main/resources/stacks/HDP/3.0/services/ZOOKEEPER/metainfo.xml b/ambari-server/src/main/resources/stacks/HDP/3.0/services/ZOOKEEPER/metainfo.xml new file mode 100644 index 0000000..5d4fb4d --- /dev/null +++ b/ambari-server/src/main/resources/stacks/HDP/3.0/services/ZOOKEEPER/metainfo.xml @@ -0,0 +1,54 @@ +<?xml version="1.0"?> +<!-- + Licensed to the Apache Software Foundation (ASF) under one or more + contributor license agreements. See the NOTICE file distributed with + this work for additional information regarding copyright ownership. + The ASF licenses this file to You under the Apache License, Version 2.0 + (the "License"); you may not use this file except in compliance with + the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. +--> +<metainfo> + <schemaVersion>2.0</schemaVersion> + <services> + <service> + <name>ZOOKEEPER</name> + <displayName>ZooKeeper</displayName> + <comment>Centralized service which provides highly reliable distributed coordination</comment> + <version>3.4.6.3.0</version> + <extends>common-services/ZOOKEEPER/3.4.6</extends> + + <osSpecifics> + <osSpecific> + <osFamily>amazon2015,redhat6,redhat7,suse11,suse12</osFamily> + <packages> + <package> + <name>zookeeper_${stack_version}</name> + </package> + <package> + <name>zookeeper_${stack_version}-server</name> + </package> + </packages> + </osSpecific> + <osSpecific> + <osFamily>ubuntu12,ubuntu14,ubuntu16</osFamily> + <packages> + <package> + <name>zookeeper-${stack_version}</name> + </package> + <package> + <name>zookeeper-${stack_version}-server</name> + </package> + </packages> + </osSpecific> + </osSpecifics> + </service> + </services> +</metainfo>
