Skip to content

Commit 2ed02cc

Browse files
committed
Prepare new release
1 parent 80870b6 commit 2ed02cc

File tree

3 files changed

+90
-3
lines changed

3 files changed

+90
-3
lines changed

etc/caso/caso.conf.sample

Lines changed: 82 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
#
66

77
# List of messengers that will dispatch records. valid values are
8-
# ssm,logstash,noop. You can specify more than one messenger. (list value)
8+
# ssmv4,ssm,noop,logstash,ssmv2. You can specify more than one messenger. (list
9+
# value)
910
#messengers = noop
1011

1112
# Spool directory. (string value)
@@ -62,10 +63,29 @@
6263
# Which extractor to use for getting the data. If you do not specify anything,
6364
# nova will be used. (string value)
6465
# Possible values:
65-
# ceilometer - <No description provided>
6666
# nova - <No description provided>
6767
#extractor = nova
6868

69+
#
70+
# From oslo.config
71+
#
72+
73+
# Path to a config file to use. Multiple config files can be specified, with
74+
# values in later files taking precedence. Defaults to %(default)s. This option
75+
# must be set from the command-line. (unknown value)
76+
#config_file = ['~/.project/project.conf', '~/project.conf', '/etc/project/project.conf', '/etc/project.conf']
77+
78+
# Path to a config directory to pull `*.conf` files from. This file set is
79+
# sorted, so as to provide a predictable parse order if individual options are
80+
# over-ridden. The set is parsed after the file(s) specified via previous
81+
# --config-file, arguments hence over-ridden options in the directory take
82+
# precedence. This option must be set from the command-line. (list value)
83+
#config_dir = ~/.project/project.conf.d/,~/project.conf.d/,/etc/project/project.conf.d/,/etc/project.conf.d/
84+
85+
# Lists configuration groups that provide more details for accessing
86+
# configuration settings from locations other than local files. (list value)
87+
#config_source =
88+
6989
#
7090
# From oslo.log
7191
#
@@ -320,6 +340,66 @@
320340
#port = 5000
321341

322342

343+
[sample_remote_file_source]
344+
# Example of using a remote_file source
345+
#
346+
# remote_file: A backend driver for remote files served through http[s].
347+
#
348+
# Required options:
349+
# - uri: URI containing the file location.
350+
#
351+
# Non-required options:
352+
# - ca_path: The path to a CA_BUNDLE file or directory with
353+
# certificates of trusted CAs.
354+
#
355+
# - client_cert: Client side certificate, as a single file path
356+
# containing either the certificate only or the
357+
# private key and the certificate.
358+
#
359+
# - client_key: Client side private key, in case client_cert is
360+
# specified but does not includes the private key.
361+
362+
#
363+
# From oslo.config
364+
#
365+
366+
# The name of the driver that can load this configuration source. (string
367+
# value)
368+
#
369+
# This option has a sample default set, which means that
370+
# its actual default value may vary from the one documented
371+
# below.
372+
#driver = remote_file
373+
374+
# Required option with the URI of the extra configuration file's location. (uri
375+
# value)
376+
#
377+
# This option has a sample default set, which means that
378+
# its actual default value may vary from the one documented
379+
# below.
380+
#uri = https://example.com/my-configuration.ini
381+
382+
# The path to a CA_BUNDLE file or directory with certificates of trusted CAs.
383+
# (string value)
384+
#
385+
# This option has a sample default set, which means that
386+
# its actual default value may vary from the one documented
387+
# below.
388+
#ca_path = /etc/ca-certificates
389+
390+
# Client side certificate, as a single file path containing either the
391+
# certificate only or the private key and the certificate. (string value)
392+
#
393+
# This option has a sample default set, which means that
394+
# its actual default value may vary from the one documented
395+
# below.
396+
#client_cert = /etc/ca-certificates/service-client-keystore
397+
398+
# Client side private key, in case client_cert is specified but does not
399+
# includes the private key. (string value)
400+
#client_key = <None>
401+
402+
323403
[ssm]
324404

325405
#
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
---
2+
prelude: >
3+
This version includes a refactoring of the base extractors, dropping support
4+
for the ceilometer extractor that was unmaintained for a long period of time.
5+
upgrade:
6+
- |
7+
Ceilometer extractor is no longer supported.

tox.ini

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ envdir = {toxworkdir}/shared
7272
commands = python3 setup.py check -r -s -m
7373

7474
[testenv:genconfig]
75-
commands = oslo-config-generator --config-file=etc/caso-config-generator.conf
75+
commands = oslo-config-generator --config-file=etc/caso/caso-config-generator.conf
7676

7777
[testenv:docs]
7878
commands =

0 commit comments

Comments
 (0)