-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmetainfo.xml
57 lines (55 loc) · 1.73 KB
/
metainfo.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<?xml version="1.0"?>
<metainfo>
<schemaVersion>2.0</schemaVersion>
<services>
<service>
<name>REDIS</name>
<displayName>Redis</displayName>
<comment>Redis is an in-memory data structure store, used as database, cache and message broker.Redis has built-in replication, Lua scripting, LRU eviction, transactions and different levels of on-disk persistence, and provides high availability via Redis Sentinel and automatic partitioning with Redis Cluster.</comment>
<version>3.2</version>
<components>
<component>
<name>Redis_node</name>
<displayName>Redis Node</displayName>
<category>MASTER</category>
<cardinality>3+</cardinality>
<commandScript>
<script>scripts/redis.py</script>
<scriptType>PYTHON</scriptType>
<timeout>600</timeout>
</commandScript>
</component>
</components>
<osSpecifics>
<osSpecific>
<osFamily>redhat5,redhat6,redhat7</osFamily>
<packages>
<package>
<name>epel-release</name>
</package>
<package>
<name>redis</name>
</package>
<package>
<name>ruby</name>
</package>
<package>
<name>rubygems</name>
</package>
</packages>
</osSpecific>
<osSpecific>
<osFamily>ubuntu12,ubuntu14,ubuntu16</osFamily>
<packages>
<package>
<name>redis</name>
</package>
<package>
<name>ruby</name>
</package>
</packages>
</osSpecific>
</osSpecifics>
</service>
</services>
</metainfo>