Skip to content

Commit c66e9f4

Browse files
authored
Merge pull request #21 from quattor/19.12.0
Release 19.12.0 documentation
2 parents b262eea + 3e34820 commit c66e9f4

File tree

52 files changed

+4333
-131
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+4333
-131
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
######################################
3+
NCM\::Component\::OpenStack\::Barbican
4+
######################################
5+
6+
7+
Methods
8+
=======
9+
10+
11+
12+
- _attrs
13+
14+
Override ``daemons`` attribute
15+
16+
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
2+
########################################
3+
NCM\::Component\::OpenStack\::Ceilometer
4+
########################################
5+
6+
7+
Methods
8+
=======
9+
10+
11+
12+
- _attrs
13+
14+
Override ``manage``, ``db`` and ``filename`` attribute (and set ``daemon_map``)
15+
16+
17+
18+
- pre_populate_service_database
19+
20+
Initializes ``Gnocchi`` database for ``Ceilometer`` metric service.
21+
This should be done before ``Ceilometer`` database bootstrap.
22+
23+
24+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
2+
########################################
3+
NCM\::Component\::OpenStack\::Cloudkitty
4+
########################################
5+
6+
7+
Methods
8+
=======
9+
10+
11+
12+
- _attrs
13+
14+
Override ``daemons`` attribute
15+
16+
17+
18+
- pre_populate_service_database
19+
20+
Initializes ``Cloudkitty`` storage backend for the ``OpenStack`` rating service.
21+
22+
23+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
2+
####################################
3+
NCM\::Component\::OpenStack\::Magnum
4+
####################################
5+
6+
7+
Methods
8+
=======
9+
10+
11+
12+
- _attrs
13+
14+
Override ``daemons`` attribute
15+
16+
17+

docs/components/NCM_Component_cron_schema.rst

+2-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ Types
106106
- Type: structure_cron_syslog
107107
- **/software/components/cron/cron_component**
108108
- */software/components/cron/cron_component/entries*
109-
- Description: A list containing cron structures (described above).
109+
- Description: A list containing cron structures (described above). Validate with no_duplicate_cron_entries if you wish to prevent duplicate entries from being defined.
110110
- Optional
111111
- Type: structure_cron
112112
- */software/components/cron/cron_component/deny*
@@ -139,3 +139,4 @@ Functions
139139
- Description: Convenience wrapper for validating cron day of week field
140140
- valid_cron_frequency
141141
- Description: Validate contents of cron frequency field
142+
- no_duplicate_cron_entries

docs/components/NCM_Component_metaconfig.rst

+6
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,12 @@ The following formats can be rendered via ``EDG::WP4::CCM::TextRender``:
6161

6262

6363

64+
* jsonpretty
65+
66+
Uses `JSON::XS <http://search.cpan.org/search?query=JSON%3a%3aXS&mode=module>`_ pretty for rendering JSON configuration files.
67+
68+
69+
6470
* properties
6571

6672
Uses `Config::Properties <http://search.cpan.org/search?query=Config%3a%3aProperties&mode=module>`_ for rendering Java-style configuration
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#########################################################
2+
NCM\::Component\::metaconfig\::elasticsearch - config_0.9
3+
#########################################################
4+
5+
Variables
6+
---------
7+
8+
- METACONFIG_ELASTICSEARCH_VERSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#########################################################
2+
NCM\::Component\::metaconfig\::elasticsearch - config_5.0
3+
#########################################################
4+
5+
Variables
6+
---------
7+
8+
- METACONFIG_ELASTICSEARCH_VERSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#########################################################
2+
NCM\::Component\::metaconfig\::elasticsearch - config_6.3
3+
#########################################################
4+
5+
Variables
6+
---------
7+
8+
- METACONFIG_ELASTICSEARCH_VERSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#########################################################
2+
NCM\::Component\::metaconfig\::elasticsearch - config_7.0
3+
#########################################################
4+
5+
Variables
6+
---------
7+
8+
- METACONFIG_ELASTICSEARCH_VERSION
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
#########################################################
2+
NCM\::Component\::metaconfig\::elasticsearch - schema_6.3
3+
#########################################################
4+
5+
Types
6+
-----
7+
8+
- **/software/components/metaconfig/elasticsearch_bootstrap**
9+
- Description: version specific types for Elasticsearch version 6.3 and later
10+
- */software/components/metaconfig/elasticsearch_bootstrap/memory_lock*
11+
- Optional
12+
- Type: boolean
13+
- **/software/components/metaconfig/elasticsearch_path**
14+
- */software/components/metaconfig/elasticsearch_path/repo*
15+
- Optional
16+
- Type: absolute_file_path
17+
- **/software/components/metaconfig/elasticsearch_thread_pool_fixed**
18+
- Description: fixed thread pool
19+
- */software/components/metaconfig/elasticsearch_thread_pool_fixed/size*
20+
- Optional
21+
- Type: long
22+
- Range: 0..
23+
- */software/components/metaconfig/elasticsearch_thread_pool_fixed/queue_size*
24+
- Optional
25+
- Type: long
26+
- Range: -1..
27+
- **/software/components/metaconfig/elasticsearch_thread_pool_scaling**
28+
- Description: scaling thread pool
29+
- */software/components/metaconfig/elasticsearch_thread_pool_scaling/core*
30+
- Optional
31+
- Type: long
32+
- Range: 1..
33+
- */software/components/metaconfig/elasticsearch_thread_pool_scaling/max*
34+
- Optional
35+
- Type: long
36+
- Range: 1..
37+
- */software/components/metaconfig/elasticsearch_thread_pool_scaling/keep_alive*
38+
- Description: time in seconds to keep idle thread in thread pool
39+
- Optional
40+
- Type: long
41+
- Range: 0..
42+
- **/software/components/metaconfig/elasticsearch_threadpool**
43+
- Description: Thread pool management. See http://www.elasticsearch.org/guide/reference/modules/threadpool/ @
44+
- */software/components/metaconfig/elasticsearch_threadpool/generic*
45+
- Optional
46+
- Type: elasticsearch_thread_pool_scaling
47+
- */software/components/metaconfig/elasticsearch_threadpool/search*
48+
- Optional
49+
- Type: elasticsearch_thread_pool_fixed
50+
- */software/components/metaconfig/elasticsearch_threadpool/index*
51+
- Optional
52+
- Type: elasticsearch_thread_pool_fixed
53+
- */software/components/metaconfig/elasticsearch_threadpool/get*
54+
- Optional
55+
- Type: elasticsearch_thread_pool_fixed
56+
- */software/components/metaconfig/elasticsearch_threadpool/write*
57+
- Optional
58+
- Type: elasticsearch_thread_pool_fixed
59+
- */software/components/metaconfig/elasticsearch_threadpool/percolate*
60+
- Optional
61+
- Type: elasticsearch_thread_pool_fixed
62+
- */software/components/metaconfig/elasticsearch_threadpool/snapshot*
63+
- Optional
64+
- Type: elasticsearch_thread_pool_scaling
65+
- */software/components/metaconfig/elasticsearch_threadpool/warmer*
66+
- Optional
67+
- Type: elasticsearch_thread_pool_scaling
68+
- */software/components/metaconfig/elasticsearch_threadpool/refresh*
69+
- Optional
70+
- Type: elasticsearch_thread_pool_scaling
71+
- */software/components/metaconfig/elasticsearch_threadpool/listener*
72+
- Optional
73+
- Type: elasticsearch_thread_pool_scaling
74+
- **/software/components/metaconfig/elasticsearch_service**
75+
- */software/components/metaconfig/elasticsearch_service/node*
76+
- Optional
77+
- Type: elasticsearch_node
78+
- */software/components/metaconfig/elasticsearch_service/index*
79+
- Optional
80+
- Type: elasticsearch_index
81+
- */software/components/metaconfig/elasticsearch_service/gateway*
82+
- Optional
83+
- Type: elasticsearch_gw
84+
- */software/components/metaconfig/elasticsearch_service/indices*
85+
- Optional
86+
- Type: elasticsearch_indices
87+
- */software/components/metaconfig/elasticsearch_service/network*
88+
- Required
89+
- Type: elasticsearch_network
90+
- */software/components/metaconfig/elasticsearch_service/monitor.jvm.gc*
91+
- Required
92+
- Type: elasticsearch_monitoring
93+
- */software/components/metaconfig/elasticsearch_service/thread_pool*
94+
- Optional
95+
- Type: elasticsearch_threadpool
96+
- */software/components/metaconfig/elasticsearch_service/bootstrap*
97+
- Optional
98+
- Type: elasticsearch_bootstrap
99+
- */software/components/metaconfig/elasticsearch_service/cluster*
100+
- Optional
101+
- Type: elasticsearch_cluster
102+
- */software/components/metaconfig/elasticsearch_service/transport*
103+
- Optional
104+
- Type: elasticsearch_transport
105+
- */software/components/metaconfig/elasticsearch_service/discovery*
106+
- Optional
107+
- Type: elasticsearch_discovery
108+
- */software/components/metaconfig/elasticsearch_service/path*
109+
- Optional
110+
- Type: elasticsearch_path
111+
- */software/components/metaconfig/elasticsearch_service/processors*
112+
- Optional
113+
- Type: long
114+
- Range: 1..

0 commit comments

Comments
 (0)